diff options
| author | Oskar Nyberg <oskar@mullvad.net> | 2022-08-26 15:15:56 +0200 |
|---|---|---|
| committer | Oskar Nyberg <oskar@mullvad.net> | 2022-08-29 12:03:43 +0200 |
| commit | 6849ac7c55533e553f27def38c6eab007abe3dc0 (patch) | |
| tree | b8c29b46ee9a04dc4183bc980466acc2818a7624 /gui | |
| parent | 6057fe4cbfd1259dc7dbfff84d946825e82c7dbc (diff) | |
| download | mullvadvpn-6849ac7c55533e553f27def38c6eab007abe3dc0.tar.xz mullvadvpn-6849ac7c55533e553f27def38c6eab007abe3dc0.zip | |
Enable interface settings when logged out
Diffstat (limited to 'gui')
| -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> |
