1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-22 11:45:59 +01: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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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"