From 633d8ff1a83b1f3fbd8350fd9cc338d50c8dc66f Mon Sep 17 00:00:00 2001 From: Stephen Adamson Date: Thu, 25 Jun 2026 18:44:05 +0100 Subject: [PATCH] fix: eslint-disable comments correctly placed for script and template sections --- frontend/src/routes/account/+page.svelte | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/src/routes/account/+page.svelte b/frontend/src/routes/account/+page.svelte index a4e8101..79940f2 100644 --- a/frontend/src/routes/account/+page.svelte +++ b/frontend/src/routes/account/+page.svelte @@ -51,6 +51,7 @@ if (!authStore.isAuthenticated) { pageState = 'unauthorized'; + // eslint-disable-next-line svelte/no-navigation-without-resolve goto('/login', { replaceState: true }); return; } @@ -1237,6 +1238,7 @@ if (response.ok) { toast.success('Account deleted successfully', { id: loadingToast }); authStore.logout(); + // eslint-disable-next-line svelte/no-navigation-without-resolve goto('/'); } else { const text = await response.text(); @@ -2599,6 +2601,7 @@

View and export all personal data we hold about you

+