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

[PM-22419] update success toast text (#15305)

This commit is contained in:
Jason Ng
2025-06-23 10:47:08 -04:00
committed by GitHub
parent e253e05c45
commit 9610272c00
2 changed files with 3 additions and 3 deletions

View File

@@ -5065,8 +5065,8 @@
"unlockPinSet": { "unlockPinSet": {
"message": "Unlock PIN set" "message": "Unlock PIN set"
}, },
"unlockBiometricSet": { "unlockWithBiometricSet": {
"message": "Unlock biometrics set" "message": "Unlock with biometrics set"
}, },
"authenticating": { "authenticating": {
"message": "Authenticating" "message": "Authenticating"

View File

@@ -537,7 +537,7 @@ export class AccountSecurityComponent implements OnInit, OnDestroy {
this.toastService.showToast({ this.toastService.showToast({
variant: "success", variant: "success",
title: null, title: null,
message: this.i18nService.t("unlockBiometricSet"), message: this.i18nService.t("unlockWithBiometricSet"),
}); });
} catch (error) { } catch (error) {
this.form.controls.biometric.setValue(false); this.form.controls.biometric.setValue(false);