diff options
Diffstat (limited to 'gui/src')
| -rw-r--r-- | gui/src/renderer/components/Settings.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gui/src/renderer/components/Settings.tsx b/gui/src/renderer/components/Settings.tsx index 56c75f0602..587ca625c9 100644 --- a/gui/src/renderer/components/Settings.tsx +++ b/gui/src/renderer/components/Settings.tsx @@ -63,7 +63,7 @@ export default function Support() { )} <StyledSettingsContent> - {showSubSettings && ( + {showSubSettings ? ( <> <Cell.Group> <AccountButton /> @@ -77,6 +77,10 @@ export default function Support() { </Cell.Group> )} </> + ) : ( + <Cell.Group> + <InterfaceSettingsButton /> + </Cell.Group> )} <Cell.Group> |
