🔧 Fixed the dark mode switch

This commit is contained in:
2025-12-02 17:05:58 -05:00
parent 2a83855115
commit a10cb07d67
2 changed files with 7 additions and 8 deletions

View File

@@ -13,5 +13,5 @@ export const useDarkMode = () => {
localStorage.setItem("theme", theme);
}, [theme, colorTheme]);
return [colorTheme, setTheme];
return [theme, setTheme];
};