diff --git a/src/App.tsx b/src/App.tsx index 79112fb..d628998 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -27,13 +27,6 @@ export const App: ParentComponent = ({ children }) => { const prefersDark = usePrefersDark() createEffect(() => { - console.log( - autoSwitchTheme(), - prefersDark(), - favNightTheme(), - favDayTheme(), - ) - if (autoSwitchTheme()) setCurTheme(prefersDark() ? favNightTheme() : favDayTheme()) })