Skip to content

Commit

Permalink
fix(auth): use hash in continueUrl
Browse files Browse the repository at this point in the history
  • Loading branch information
ofr1tz committed Apr 24, 2024
1 parent ff5ab4d commit d80896e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/RecoverAccount.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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'))
Expand Down

0 comments on commit d80896e

Please sign in to comment.