From d80896e7a2ac9539bf936de340b102c85630ab72 Mon Sep 17 00:00:00 2001 From: Oliver Fritz Date: Wed, 24 Apr 2024 17:19:44 +0200 Subject: [PATCH] fix(auth): use hash in continueUrl --- src/components/RecoverAccount.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/RecoverAccount.vue b/src/components/RecoverAccount.vue index dc44e91..403f054 100644 --- a/src/components/RecoverAccount.vue +++ b/src/components/RecoverAccount.vue @@ -36,7 +36,7 @@ export default defineComponent({ methods: { requestReset() { if (this.isFormValid) { - const url = `${location.protocol}//${location.host}//${this.currentLocale}/auth` + const url = `${location.protocol}//${location.host}/#/${this.currentLocale}/auth/sign-in` const auth = getAuth() sendPasswordResetEmail(auth, this.email, { url }) .then(() => this.showSnackbar(this.$t('authView.passwordResetEmailSent'), 'success'))