1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-11 13:53:34 +00:00

[SG-1039] Disable the KDF iterations warning (#4654)

* Turned off kdf iterations warning

* Added more information to comment
This commit is contained in:
SmithThe4th
2023-02-03 17:37:50 -05:00
committed by GitHub
parent 28746ed4a6
commit dc3a0b25cb

View File

@@ -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"