From e7f52d4ba58c4eee8d8178f6d6b69d75d755789a Mon Sep 17 00:00:00 2001
From: Alex Morask <144709477+amorask-bitwarden@users.noreply.github.com>
Date: Tue, 4 Feb 2025 09:05:41 -0500
Subject: [PATCH] Fixed copy for Families upgrade (#13156)
---
.../organizations/change-plan-dialog.component.html | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/apps/web/src/app/billing/organizations/change-plan-dialog.component.html b/apps/web/src/app/billing/organizations/change-plan-dialog.component.html
index b5471a90fd5..ca1b9245c0b 100644
--- a/apps/web/src/app/billing/organizations/change-plan-dialog.component.html
+++ b/apps/web/src/app/billing/organizations/change-plan-dialog.component.html
@@ -118,7 +118,13 @@
) | currency: "$"
}}
- /{{ "monthPerMember" | i18n }}
+
+ /{{
+ selectableProduct.productTier === productTypes.Families
+ ? "month"
+ : ("monthPerMember" | i18n)
+ }}