diff --git a/frontend/src/routes/(app)/+layout.svelte b/frontend/src/routes/(app)/+layout.svelte index 9402935191..9458cc5272 100644 --- a/frontend/src/routes/(app)/+layout.svelte +++ b/frontend/src/routes/(app)/+layout.svelte @@ -10,11 +10,9 @@ import { getCookie, deleteCookie } from '$lib/utils/cookies'; import { browser } from '$app/environment'; import * as m from '$paraglide/messages'; - import { page } from '$app/stores'; - import { breadcrumbs } from '$lib/utils/breadcrumbs'; import CommandPalette from '$lib/components/CommandPalette/CommandPalette.svelte'; - import commandPaletteOpen from '$lib/components/CommandPalette/CommandPalette.svelte'; + let sidebarOpen = true; $: classesSidebarOpen = (open: boolean) => (open ? 'ml-7 lg:ml-64' : 'ml-7');