diff --git a/frontend/src/components/Layout.tsx b/frontend/src/components/Layout.tsx index 4b82394..f4b056d 100644 --- a/frontend/src/components/Layout.tsx +++ b/frontend/src/components/Layout.tsx @@ -50,7 +50,7 @@ export const Layout = ({ children }: { children: React.ReactNode }) => { setIsDark(dark)} />
{ + onDarkChange(dark); + localStorage.setItem("theme", dark ? "dark" : "light"); + }; + return ( <>
-
+
{config?.mesh?.name?.split(" ").map((word, index) => ( @@ -308,8 +315,8 @@ export const Menu = ({ {isDark ? (
onDarkChange(false)} - onKeyDown={() => onDarkChange(false)} + onClick={() => handleDarkChange(false)} + onKeyDown={() => handleDarkChange(false)} tabIndex={0} > onDarkChange(true)} - onKeyDown={() => onDarkChange(true)} + onClick={() => handleDarkChange(true)} + onKeyDown={() => handleDarkChange(true)} tabIndex={0} >