We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0091f08 commit b2ad783Copy full SHA for b2ad783
website/src/providers/theme-provider.tsx
@@ -23,7 +23,7 @@ const ThemeProviderContext = createContext<ThemeProviderState>(initialState);
23
export function ThemeProvider({
24
children,
25
defaultTheme = 'system',
26
- storageKey = 'vite-ui-theme',
+ storageKey = 'react-dot-cursor-ui-theme',
27
...props
28
}: ThemeProviderProps) {
29
const [theme, setTheme] = useState<Theme>(() => (localStorage.getItem(storageKey) as Theme) || defaultTheme);
0 commit comments