diff --git a/src/components/ThemeProvider.tsx b/src/components/ThemeProvider.tsx index 078d4c3..592ae0e 100644 --- a/src/components/ThemeProvider.tsx +++ b/src/components/ThemeProvider.tsx @@ -2,14 +2,14 @@ import { useEffect, useState } from "react" import { type Theme, ThemeContext } from "@/lib/ThemeContext" type ThemeProviderProps = { - children: React.ReactNode - defaultTheme?: Theme - storageKey?: string + children: React.ReactNode; + defaultTheme?: Theme; + storageKey?: string; } export function ThemeProvider({ children, - defaultTheme = "system", + defaultTheme = "light", storageKey = "theme", ...props }: ThemeProviderProps) {