From dc3a0b25cb9f417627a58b1b70ccc8543cd06ef7 Mon Sep 17 00:00:00 2001 From: SmithThe4th Date: Fri, 3 Feb 2023 17:37:50 -0500 Subject: [PATCH] [SG-1039] Disable the KDF iterations warning (#4654) * Turned off kdf iterations warning * Added more information to comment --- apps/web/src/vault/app/vault/vault.component.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/web/src/vault/app/vault/vault.component.ts b/apps/web/src/vault/app/vault/vault.component.ts index 3720466212..ab49744f34 100644 --- a/apps/web/src/vault/app/vault/vault.component.ts +++ b/apps/web/src/vault/app/vault/vault.component.ts @@ -95,7 +95,8 @@ export class VaultComponent implements OnInit, OnDestroy { async ngOnInit() { this.showVerifyEmail = !(await this.tokenService.getEmailVerified()); this.showBrowserOutdated = window.navigator.userAgent.indexOf("MSIE") !== -1; - this.showLowKdf = await this.isLowKdfIteration(); + //disable warning for february release -> add await this.isLowKdfIteration(); when ready + this.showLowKdf = false; this.trashCleanupWarning = this.i18nService.t( this.platformUtilsService.isSelfHost() ? "trashCleanupWarningSelfHosted"