Skip to content

Commit

Permalink
refactor: Update default theme in App component to "light"
Browse files Browse the repository at this point in the history
  • Loading branch information
HasanYahya101 committed Jul 28, 2024
1 parent 3dedd78 commit 82ded70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ function App() {
}, []);
if (isDesktopDevice === true) {
return (
<ThemeProvider defaultTheme="dark" storageKey="vite-ui-theme">
<ThemeProvider defaultTheme="light" storageKey="vite-ui-theme">
<Playground />
</ThemeProvider>
)
}
else {
return (
<ThemeProvider defaultTheme="dark" storageKey="vite-ui-theme">
<ThemeProvider defaultTheme="light" storageKey="vite-ui-theme">
<Apology />
</ThemeProvider>
)
Expand Down

0 comments on commit 82ded70

Please sign in to comment.