Skip to content

Commit b2ad783

Browse files
committed
✏️ Fix storageKey
1 parent 0091f08 commit b2ad783

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

website/src/providers/theme-provider.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const ThemeProviderContext = createContext<ThemeProviderState>(initialState);
2323
export function ThemeProvider({
2424
children,
2525
defaultTheme = 'system',
26-
storageKey = 'vite-ui-theme',
26+
storageKey = 'react-dot-cursor-ui-theme',
2727
...props
2828
}: ThemeProviderProps) {
2929
const [theme, setTheme] = useState<Theme>(() => (localStorage.getItem(storageKey) as Theme) || defaultTheme);

0 commit comments

Comments
 (0)