We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 980aa3c commit 14737ecCopy full SHA for 14737ec
1 file changed
packages/fxa-auth-server/lib/payments/subscription-reminders.ts
@@ -243,7 +243,9 @@ export class SubscriptionReminders {
243
`${this.paymentsNextUrl}/${offeringId}/${priceSubplatInterval}/stay-subscribed/loyalty-discount/terms`
244
).toString(),
245
ctaButtonLabel: cmsChurnInterventionEntry?.ctaMessage,
246
- ctaButtonUrl: cmsChurnInterventionEntry?.productPageUrl,
+ ctaButtonUrl: new URL(
247
+ `${this.paymentsNextUrl}/subscriptions/${subscription.id}/loyalty-discount/stay-subscribed`
248
+ ).toString(),
249
showChurn: isEligible,
250
}
251
);
0 commit comments