Skip to content

Commit

Permalink
chore: remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
filoozom committed Oct 28, 2023
1 parent cec3d8e commit 9740abc
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/lib/stores/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ function createThemeStore(): ThemeStore {
const store = writable<Theme>({ darkMode, baseColor, isDarkMode: false })

isSystemDark.subscribe((isSystemDark) => {
console.log({ isSystemDark })
store.update((theme) => ({
...theme,
isDarkMode: isSystemDark && theme.darkMode === 'system',
Expand Down

0 comments on commit 9740abc

Please sign in to comment.