Skip to content

Commit

Permalink
fix: Fix settings page
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxou44 committed Oct 13, 2024
1 parent 9ef77d5 commit bc5b36d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/views/Settings.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const SettingsView = () => {
<>
<LoadingPage show={!settings} />
<ActionsBar actions={['BACK']} onAction={handleBack} />
{settings && false && <SettingsForm settings={settings} onUpdate={settingsActions.setSettings} />}
{settings && <SettingsForm settings={settings} onUpdate={settingsActions.setSettings} />}
</>
);
};
Expand Down

0 comments on commit bc5b36d

Please sign in to comment.