Merge pull request #62 from janhq/fix/#43

chore: set default theme to light
This commit is contained in:
NamH 2023-09-05 20:56:10 -07:00 committed by GitHub
commit a29847d1bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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