diff --git a/src/lib/components/dashboard/Navbar.svelte b/src/lib/components/dashboard/Navbar.svelte
index acbf4fd..298418e 100644
--- a/src/lib/components/dashboard/Navbar.svelte
+++ b/src/lib/components/dashboard/Navbar.svelte
@@ -2,7 +2,6 @@
import { goto } from '$app/navigation';
import { userStore } from '$lib/ts/auth';
import Icon from '@iconify/svelte';
- import ThemePicker from '$lib/components/ThemePicker.svelte';
async function logout() {
await fetch('/api/auth/logout', { method: 'POST' });
@@ -43,8 +42,6 @@
-
-
diff --git a/src/routes/dashboard/+page.svelte b/src/routes/dashboard/+page.svelte
index c347923..7800252 100644
--- a/src/routes/dashboard/+page.svelte
+++ b/src/routes/dashboard/+page.svelte
@@ -2,9 +2,7 @@
import { goto } from '$app/navigation';
import { onMount } from 'svelte';
import { userStore } from '$lib/ts/auth';
- import { themeStore, darkModeStore } from '$lib/ts/store';
import Icon from '@iconify/svelte';
- import ThemePicker from '$lib/components/ThemePicker.svelte';
import Navbar from '$lib/components/dashboard/Navbar.svelte';
import FolderRow from '$lib/components/dashboard/FolderRow.svelte';
import DocCard from '$lib/components/dashboard/DocCard.svelte';