We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents daa7ea5 + 3635f86 commit 4903469Copy full SHA for 4903469
1 file changed
src/components/@molecules/Hamburger/MainMenu.tsx
@@ -290,6 +290,16 @@ const MainMenu = ({ setCurrentView }: { setCurrentView: (view: HamburgerView) =>
290
.run()}
291
<Typography weight="bold">{t('navigation.theme')}</Typography>
292
</div>
293
+ <div>
294
+ <Typography>
295
+ {match({ theme, usingSystemTheme })
296
+ .with({ usingSystemTheme: true }, () => t('navigation.mode.system'))
297
+ .with({ theme: 'dark' }, () => t('navigation.mode.dark'))
298
+ .with({ theme: 'light' }, () => t('navigation.mode.light'))
299
+ .run()}
300
+ </Typography>
301
+ <RightChevronSVG height={16} width={16} />
302
+ </div>
303
</HoverableSettingsItem>
304
<SettingsItem>
305
<div>
0 commit comments