diff --git a/src/core/mixins/logInMixin.js b/src/core/mixins/logInMixin.js index 26ac74790..1cf1cbf08 100644 --- a/src/core/mixins/logInMixin.js +++ b/src/core/mixins/logInMixin.js @@ -16,7 +16,7 @@ export const logInMixin = { await this.$store.dispatch('main/getLoggedUser', this.$q.cookies.get('user_id')); if (this.$route.query.from) return this.$router.replace({ path: this.$route.query.from }); - return this.$router.push('/').catch(e => {}); + return this.$router.replace('/').catch(e => {}); }, }, }