From 72997070abe3370164353f7190c6a80925b34bda Mon Sep 17 00:00:00 2001 From: Shane Melton Date: Wed, 21 Jun 2023 16:58:14 -0700 Subject: [PATCH] [AC-1423] Make "Password Manager" the default fallback for product name --- .../organizations/organization-subscription-cloud.component.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/web/src/app/billing/organizations/organization-subscription-cloud.component.ts b/apps/web/src/app/billing/organizations/organization-subscription-cloud.component.ts index 33ad230577..ae455e6354 100644 --- a/apps/web/src/app/billing/organizations/organization-subscription-cloud.component.ts +++ b/apps/web/src/app/billing/organizations/organization-subscription-cloud.component.ts @@ -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"); } }