Skip to content

Commit

Permalink
feat(boutique-frontend): change default of dark theme to light theme …
Browse files Browse the repository at this point in the history
…for test dev deployment
  • Loading branch information
beniaminmunteanu committed Oct 13, 2024
1 parent 337891b commit 9003b9d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ type ThemeProviderProps = {
}

export const ThemeProvider = ({ children }: ThemeProviderProps) => {
const [theme, setTheme] = useState<'light' | 'dark'>('dark')
const [theme, setTheme] = useState<'light' | 'dark'>('light')

return (
<ThemeContext.Provider
Expand Down

0 comments on commit 9003b9d

Please sign in to comment.