1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-12-02 13:23:29 +01:00

[AC-1423] Make "Password Manager" the default fallback for product name

This commit is contained in:
Shane Melton 2023-06-21 16:58:14 -07:00
parent 3c904a7ab9
commit 72997070ab
No known key found for this signature in database

View File

@ -77,6 +77,8 @@ export class OrganizationSubscriptionCloudComponent implements OnInit, OnDestroy
return this.i18nService.t("passwordManager");
case BitwardenProductType.SecretsManager:
return this.i18nService.t("secretsManager");
default:
return this.i18nService.t("passwordManager");
}
}