From b64b3362e520d568a10e20049a215d9b7ed34bff Mon Sep 17 00:00:00 2001 From: Hannes Heine Date: Tue, 10 Aug 2021 13:55:20 +0200 Subject: [PATCH] Fixe the error case their is no method named error the used one is named catch. --- frontend/src/views/Pages/ForgotPassword.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/views/Pages/ForgotPassword.vue b/frontend/src/views/Pages/ForgotPassword.vue index fb8873ba6..8e8834e42 100644 --- a/frontend/src/views/Pages/ForgotPassword.vue +++ b/frontend/src/views/Pages/ForgotPassword.vue @@ -64,7 +64,7 @@ export default { }, }) .then(() => this.$router.push('/thx/password')) - .error(() => this.$router.push('/thx/password')) + .catch(() => this.$router.push('/thx/password')) }, }, }