diff --git a/frontend/src/routes/login/+page.svelte b/frontend/src/routes/login/+page.svelte index e37c4f8..d63148e 100644 --- a/frontend/src/routes/login/+page.svelte +++ b/frontend/src/routes/login/+page.svelte @@ -3,14 +3,7 @@ import { apiUri } from '$lib/utils/common'; import { ProgressBar, LightSwitch } from '@skeletonlabs/skeleton'; - /** - * @typedef formResult - * @type {object} - * @property {string} status - * @property {string} message - * @property {null | object} data - */ - /** @type {formResult} */ + /** @type {ApiResponse} */ export let formResult; let isProcessing = false; @@ -33,7 +26,6 @@ isProcessing = false; if (formResult.status === 'ok') { - // rerun all `load` functions, following the successful update await invalidateAll(); goto('/app/prober/'); } @@ -52,48 +44,20 @@