footer items (#57)

This commit is contained in:
Owen Rees
2023-07-05 14:36:35 +02:00
committed by GitHub
parent 43b3eadcad
commit 76d486b157
2 changed files with 10 additions and 5 deletions
+2 -2
View File
@@ -12,7 +12,7 @@ const ThemeSwitcher = () => {
if (!mounted) return null;
return (
<>
<div className="cursor-pointer">
{colorTheme === "light" ? (
<div data-test="toggle-dark" onClick={() => setTheme("light")}>
<svg
@@ -40,7 +40,7 @@ const ThemeSwitcher = () => {
</svg>
</div>
)}
</>
</div>
);
};