diff --git a/frontend/src/views/Pages/ResetPassword.vue b/frontend/src/views/Pages/ResetPassword.vue index db4e0d6c8..69bc9e533 100644 --- a/frontend/src/views/Pages/ResetPassword.vue +++ b/frontend/src/views/Pages/ResetPassword.vue @@ -92,9 +92,10 @@ export default { }) .then(() => { this.form.password = '' - if (textFields.checkEmail) { + if (this.$route.path.includes('checkEmail')) { this.$router.push('/thx/checkEmail') - } else { + } + if (this.$route.path.includes('reset')) { this.$router.push('/thx/reset') } })