diff --git a/packages/dashboard/src/routes/(static)/login/password-reset/confirm/[token]/+page.svelte b/packages/dashboard/src/routes/(static)/login/password-reset/confirm/[token]/+page.svelte index e06289ec..bc6440b9 100644 --- a/packages/dashboard/src/routes/(static)/login/password-reset/confirm/[token]/+page.svelte +++ b/packages/dashboard/src/routes/(static)/login/password-reset/confirm/[token]/+page.svelte @@ -34,8 +34,7 @@ try { await requestPasswordResetConfirm(token, password) - // Hard refresh and send the user back to the login screen - // window.location.href = '/login' + window.location.href = '/login' } catch (error) { if (error instanceof Error) { formErrors = client().parseError(error)