Skip to content

Commit 7d84431

Browse files
committed
fix: revert to use resolvedTheme
1 parent 90c3a67 commit 7d84431

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

components/ThemeSwitch.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { useTheme } from 'next-themes'
55

66
const ThemeSwitch = () => {
77
const [mounted, setMounted] = useState(false)
8-
const { theme, setTheme } = useTheme()
8+
const { theme, setTheme, resolvedTheme } = useTheme()
99

1010
// When mounted on client, now we can show the UI
1111
useEffect(() => setMounted(true), [])
@@ -17,15 +17,15 @@ const ThemeSwitch = () => {
1717
return (
1818
<button
1919
aria-label="Toggle Dark Mode"
20-
onClick={() => setTheme(theme === 'dark' ? 'light' : 'dark')}
20+
onClick={() => setTheme(theme === 'dark' || resolvedTheme === 'dark' ? 'light' : 'dark')}
2121
>
2222
<svg
2323
xmlns="http://www.w3.org/2000/svg"
2424
viewBox="0 0 20 20"
2525
fill="currentColor"
2626
className="text-gray-900 dark:text-gray-100 h-6 w-6"
2727
>
28-
{mounted && theme === 'dark' ? (
28+
{mounted && (theme === 'dark' || resolvedTheme === 'dark') ? (
2929
<path
3030
fillRule="evenodd"
3131
d="M10 2a1 1 0 011 1v1a1 1 0 11-2 0V3a1 1 0 011-1zm4 8a4 4 0 11-8 0 4 4 0 018 0zm-.464 4.95l.707.707a1 1 0 001.414-1.414l-.707-.707a1 1 0 00-1.414 1.414zm2.12-10.607a1 1 0 010 1.414l-.706.707a1 1 0 11-1.414-1.414l.707-.707a1 1 0 011.414 0zM17 11a1 1 0 100-2h-1a1 1 0 100 2h1zm-7 4a1 1 0 011 1v1a1 1 0 11-2 0v-1a1 1 0 011-1zM5.05 6.464A1 1 0 106.465 5.05l-.708-.707a1 1 0 00-1.414 1.414l.707.707zm1.414 8.486l-.707.707a1 1 0 01-1.414-1.414l.707-.707a1 1 0 011.414 1.414zM4 11a1 1 0 100-2H3a1 1 0 000 2h1z"

0 commit comments

Comments
 (0)