diff --git a/src/app/subscription/__tests__/subscription-screen.helpers.test.ts b/src/app/subscription/__tests__/subscription-screen.helpers.test.ts index cc7c4aa4..2317a5d8 100644 --- a/src/app/subscription/__tests__/subscription-screen.helpers.test.ts +++ b/src/app/subscription/__tests__/subscription-screen.helpers.test.ts @@ -180,7 +180,7 @@ describe("subscription screen helpers", () => { }), ).toMatchObject({ badgeText: "50% OFF", - title: "New User First Recharge", + title: "First Recharge Offer", }); }); diff --git a/src/app/subscription/subscription-screen.helpers.ts b/src/app/subscription/subscription-screen.helpers.ts index 289d268f..19061d07 100644 --- a/src/app/subscription/subscription-screen.helpers.ts +++ b/src/app/subscription/subscription-screen.helpers.ts @@ -171,7 +171,7 @@ export function getFirstRechargeOfferView(input: { const badgeText = `${discountPercent}% OFF`; return { badgeText, - title: "New User First Recharge", + title: "First Recharge Offer", subtitle: "Your first recharge price is already applied. No code needed.", };