Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/smooth-clouds-fetch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@clerk/localizations": patch
---

Fixed a typo when canceling a free trial.
Original file line number Diff line number Diff line change
Expand Up @@ -1214,7 +1214,7 @@ describe('SubscriptionDetails', () => {
expect(getByText('Cancel free trial for Pro Plan plan?')).toBeVisible();
expect(
getByText(
"Your trial will stay active until February 1, 2021. After that, you'll lose access to trial features. You won't be changed.",
"Your trial will stay active until February 1, 2021. After that, you'll lose access to trial features. You won't be charged.",
),
).toBeVisible();
expect(getByText('Keep free trial')).toBeVisible();
Expand Down
2 changes: 1 addition & 1 deletion packages/localizations/src/en-US.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export const enUS: LocalizationResource = {
billedMonthlyOnly: 'Only billed monthly',
cancelFreeTrial: 'Cancel free trial',
cancelFreeTrialAccessUntil:
"Your trial will stay active until {{ date | longDate('en-US') }}. After that, you'll lose access to trial features. You won't be changed.",
"Your trial will stay active until {{ date | longDate('en-US') }}. After that, you'll lose access to trial features. You won't be charged.",
cancelFreeTrialTitle: 'Cancel free trial for {{plan}} plan?',
cancelSubscription: 'Cancel subscription',
cancelSubscriptionAccessUntil:
Expand Down
Loading