From 5c3669ad98df5c8fb25e5f7a3035eecffdfa12e4 Mon Sep 17 00:00:00 2001 From: Conner Turnbull <133619638+cturnbull-bitwarden@users.noreply.github.com> Date: Tue, 27 Jan 2026 16:22:45 -0500 Subject: [PATCH] [PM-31295] Remove price from next charge on individual subscription page (#18600) (#18608) * Remove price from next charge on individual subscription page * Revert subscription-card changes, limit scope to legacy component (cherry picked from commit 4fad2c3bcdfed6bf0da0b604b5575b9d5e9b0039) --- .../individual/user-subscription.component.html | 16 ++++------------ apps/web/src/locales/en/messages.json | 3 +++ 2 files changed, 7 insertions(+), 12 deletions(-) diff --git a/apps/web/src/app/billing/individual/user-subscription.component.html b/apps/web/src/app/billing/individual/user-subscription.component.html index f060d29b377..2d0a4b465ed 100644 --- a/apps/web/src/app/billing/individual/user-subscription.component.html +++ b/apps/web/src/app/billing/individual/user-subscription.component.html @@ -57,12 +57,8 @@
- - {{ - (sub.subscription.periodEndDate | date: "MMM d, y") + - ", " + - (discountedSubscriptionAmount | currency: "$") - }} + + {{ sub.subscription.periodEndDate | date: "MMM d, y" }}
- - {{ - (sub.subscription.periodEndDate | date: "MMM d, y") + - ", " + - (subscriptionAmount | currency: "$") - }} + + {{ sub.subscription.periodEndDate | date: "MMM d, y" }}
diff --git a/apps/web/src/locales/en/messages.json b/apps/web/src/locales/en/messages.json index 5a83bc75810..9c044af8034 100644 --- a/apps/web/src/locales/en/messages.json +++ b/apps/web/src/locales/en/messages.json @@ -3281,6 +3281,9 @@ "nextChargeHeader": { "message": "Next Charge" }, + "nextChargeDate": { + "message": "Next charge date" + }, "plan": { "message": "Plan" },