Disabled the warning for the March release. (#4998)

This commit is contained in:
Todd Martin 2023-03-14 11:12:11 -04:00 committed by GitHub
parent 07b074f184
commit 6cbfdcf90a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -99,7 +99,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 March release -> add await this.isLowKdfIteration(); when ready
this.showLowKdf = false;
this.trashCleanupWarning = this.i18nService.t(
this.platformUtilsService.isSelfHost()
? "trashCleanupWarningSelfHosted"