Skip to content

Commit

Permalink
Fixed free trial expired text on SubscriptionSettingsActivity
Browse files Browse the repository at this point in the history
  • Loading branch information
nalcalag committed Feb 26, 2025
1 parent 4bafee1 commit cba287e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ class SubscriptionSettingsActivity : DuckDuckGoActivity() {
getString(string.freeTrialActiveSubscriptionsData, viewState.date, getString(string.monthly))
viewState.status == AUTO_RENEWABLE && viewState.duration == Yearly ->
getString(string.freeTrialActiveSubscriptionsData, viewState.date, getString(string.yearly))
else -> getString(string.freeTrialCancelledSubscriptionsData)
else -> getString(string.freeTrialCancelledSubscriptionsData, viewState.date)
}
binding.changePlan.setSecondaryText(subscriptionRenewalDetailsRes)

Expand Down

0 comments on commit cba287e

Please sign in to comment.