aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src
diff options
context:
space:
mode:
Diffstat (limited to 'webui/src')
-rw-r--r--webui/src/components/Themer.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/webui/src/components/Themer.tsx b/webui/src/components/Themer.tsx
index d831fca9..4adef24a 100644
--- a/webui/src/components/Themer.tsx
+++ b/webui/src/components/Themer.tsx
@@ -13,7 +13,8 @@ const ThemeContext = createContext({
const LightSwitch = () => {
const { mode, toggleMode } = useContext(ThemeContext);
- const description = `Switch to ${mode === 'light' ? 'dark' : 'light'} theme`;
+ const nextMode = mode === 'light' ? 'dark' : 'light';
+ const description = `Switch to ${nextMode} theme`;
return (
<Tooltip title={description}>