chore: set default theme to light

Signed-off-by: James <james@jan.ai>
This commit is contained in:
James 2023-09-05 08:10:48 -07:00
parent 25a096da28
commit 1f6e897a1a

View File

@ -9,7 +9,7 @@ type Props = {
export const ThemeWrapper: React.FC<Props> = ({ children }) => {
return (
<ThemeProvider enableSystem={true} attribute="class">
<ThemeProvider enableSystem={false} attribute="class">
{children}
</ThemeProvider>
);