Skip to content

Commit

Permalink
Don't disable lock button for non redux connections.
Browse files Browse the repository at this point in the history
  • Loading branch information
EskiMojo14 committed May 6, 2024
1 parent c8cf847 commit 2f5a234
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/redux-devtools-app/src/components/TopButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,7 @@ export default class TopButtons extends Component<Props> {
<Toolbar borderPosition="bottom">
{features.pause && <RecordButton paused={isPaused} />}
{features.persist && <PersistButton />}
{features.lock && (
<LockButton locked={isLocked} disabled={options.lib !== 'redux'} />
)}
{features.lock && <LockButton locked={isLocked} />}
<Divider />
<Button
title="Reset to the state you created the store with"
Expand Down

0 comments on commit 2f5a234

Please sign in to comment.