Send to /thx/login not /reset/login so the user get's a message to check to validate his account.

This commit is contained in:
elweyn 2021-12-13 12:02:21 +01:00
parent 7b8426593e
commit 7341515dad

View File

@ -107,7 +107,7 @@ export default {
.catch((error) => {
this.$toasted.global.error(this.$t('error.no-account'))
if (error.message.includes('User email not validated')) {
this.$router.push('/reset/login')
this.$router.push('/thx/login')
}
loader.hide()
})