diff --git a/web/satellite/src/views/ResetPassword.vue b/web/satellite/src/views/ResetPassword.vue index 4b3e1aedf..539afefd0 100644 --- a/web/satellite/src/views/ResetPassword.vue +++ b/web/satellite/src/views/ResetPassword.vue @@ -139,6 +139,7 @@ export default class ResetPassword extends Vue { try { await this.auth.resetPassword(this.token, this.password); + await this.auth.logout(); this.$store.dispatch(APP_STATE_ACTIONS.TOGGLE_SUCCESSFUL_PASSWORD_RESET); } catch (error) { await this.$notify.error(error.message);