diff --git a/frontend/src/lib/components/admin/BookingCreateModal.svelte b/frontend/src/lib/components/admin/BookingCreateModal.svelte index f81a400..7b182fe 100644 --- a/frontend/src/lib/components/admin/BookingCreateModal.svelte +++ b/frontend/src/lib/components/admin/BookingCreateModal.svelte @@ -145,8 +145,6 @@ !customServiceErrors.duration_minutes && !customServiceErrors.minimum_age_required ); - // eslint-disable-next-line @typescript-eslint/no-unused-vars - // eslint-disable-next-line @typescript-eslint/no-unused-vars function toggleCustomForm(show: boolean) { showCustomCreateForm = show; diff --git a/frontend/src/routes/admin/+page.svelte b/frontend/src/routes/admin/+page.svelte index 64ab55b..81c5007 100644 --- a/frontend/src/routes/admin/+page.svelte +++ b/frontend/src/routes/admin/+page.svelte @@ -68,7 +68,7 @@ settings: 'expanded' }); - let isMobile = $state(false); + let _isMobile = $state(false); // =============== Lifted Data Fetching =============== // Fetch shared data once at page level to avoid duplicate API calls @@ -95,10 +95,10 @@ if (!browser) return; const mql = window.matchMedia('(max-width: 767px)'); - isMobile = mql.matches; + _isMobile = mql.matches; function handleChange(e: MediaQueryListEvent) { - isMobile = e.matches; + _isMobile = e.matches; for (const key in sectionState) { sectionState[key as keyof typeof sectionState] = e.matches ? 'collapsed' : 'expanded'; } diff --git a/frontend/src/routes/gdpr/+page.svelte b/frontend/src/routes/gdpr/+page.svelte index 1e68bfd..527a4e6 100644 --- a/frontend/src/routes/gdpr/+page.svelte +++ b/frontend/src/routes/gdpr/+page.svelte @@ -252,9 +252,7 @@ } } - // eslint-disable-next-line svelte/no-navigation-without-resolve function handleGotoAccount() { - // eslint-disable-next-line svelte/no-navigation-without-resolve goto('/account'); }