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
+