From 2daaee74fd67b81786607037414cd4a3effb74a2 Mon Sep 17 00:00:00 2001 From: Till-JS <101404291+Till-JS@users.noreply.github.com> Date: Fri, 30 Jan 2026 18:58:38 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix:=20syntax=20error=20in=20con?= =?UTF-8?q?tacts-web=20+layout.svelte?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove stray closing brace and fix indentation in onMount. --- .../apps/web/src/routes/(app)/+layout.svelte | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/apps/contacts/apps/web/src/routes/(app)/+layout.svelte b/apps/contacts/apps/web/src/routes/(app)/+layout.svelte index 1b92929d5..43971c6c3 100644 --- a/apps/contacts/apps/web/src/routes/(app)/+layout.svelte +++ b/apps/contacts/apps/web/src/routes/(app)/+layout.svelte @@ -285,17 +285,15 @@ viewModeStore.initialize(); contactsFilterStore.initialize(); - // Fetch user data - // Load user settings and tags - await userSettings.load(); + // Load user settings and tags + await userSettings.load(); - // Load tags for Quick-Create - try { - const tagsResult = await tagsApi.list(); - availableTags = (tagsResult.tags || []).map((t) => ({ id: t.id, name: t.name })); - } catch (e) { - console.error('Failed to load tags:', e); - } + // Load tags for Quick-Create + try { + const tagsResult = await tagsApi.list(); + availableTags = (tagsResult.tags || []).map((t) => ({ id: t.id, name: t.name })); + } catch (e) { + console.error('Failed to load tags:', e); } // Initialize sidebar mode from localStorage