diff --git a/webclient/src/components/PreferencesPopup.vue b/webclient/src/components/PreferencesPopup.vue index 7fd8eafd0..49509e4d0 100644 --- a/webclient/src/components/PreferencesPopup.vue +++ b/webclient/src/components/PreferencesPopup.vue @@ -11,7 +11,6 @@ type UserTheme = "light" | "dark"; const theme = ref(initialUserTheme()); watchEffect(() => { - console.log(); document.documentElement.className = theme.value; saveCooke("theme", theme.value); }); diff --git a/webclient/src/pages/api.vue b/webclient/src/pages/api.vue index e7b67c928..74e50a588 100644 --- a/webclient/src/pages/api.vue +++ b/webclient/src/pages/api.vue @@ -1,6 +1,11 @@