From ce3311a0dce14ae7bf03cf0ea9c0771f1593287f Mon Sep 17 00:00:00 2001 From: Vincent Salucci <26154748+vincentsalucci@users.noreply.github.com> Date: Fri, 24 Sep 2021 08:33:45 -0500 Subject: [PATCH] [Reset Password v1] Refactor ForcePasswordReset flow (#1188) * [Reset Password v1] Refactor ForcePasswordReset flow * Update jslib --- src/app/vault/vault.component.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/app/vault/vault.component.ts b/src/app/vault/vault.component.ts index 7ac88452174..e2ed73eb37e 100644 --- a/src/app/vault/vault.component.ts +++ b/src/app/vault/vault.component.ts @@ -84,10 +84,6 @@ export class VaultComponent implements OnInit, OnDestroy { const queryParamsSub = this.route.queryParams.subscribe(async params => { await this.syncService.fullSync(false); - if (await this.userService.getForcePasswordReset()) { - this.router.navigate(['update-temp-password']); - } - this.showUpdateKey = !(await this.cryptoService.hasEncKey()); const canAccessPremium = await this.userService.canAccessPremium(); this.showPremiumCallout = !this.showVerifyEmail && !canAccessPremium &&