-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
fix(billing): Remove upgrade prompt for Business plan users on trial ended banner #102466
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…ended banner Fixes BIL-1508 When product trials end, users on paid Business plans were incorrectly seeing "Keep using more by upgrading your plan" which was confusing since they're already on a Business plan. This change updates the trial ended banner to show different messages based on the user's plan: - Business plan users: "Your unlimited [Product] trial ended." (no upgrade prompt) - Team plan users: "Your unlimited [Product] trial ended. Keep using more by upgrading your plan." (shows upgrade prompt) - Free plan users: "Your unlimited [Product] trial ended. Keep using more by upgrading your plan." (shows upgrade prompt) The button behavior remains unchanged (Request Upgrade / Update Plan based on billing role), only the message text is updated for Business plan users. This fix ensures Business plan users see appropriate messaging without confusing upgrade prompts, while Team plan users are still encouraged to upgrade to Business.
❌ 1 Tests Failed:
View the top 1 failed test(s) by shortest run time
To view more test analytics, go to the Test Analytics Dashboard |
| getProductName(product ?? trial.category) | ||
| ); | ||
| } else { | ||
| // For free and Team plan users, show the upgrade prompt |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it still confusing for Team users, because they can still have some reserved volume or PAYG?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No it shouldn't. Previously we show this CTA for everyone regardless of their plan type. We maintain the same intention; but omit the CTA for business tiered plans.
…ended banner (#102466) Closes https://linear.app/getsentry/issue/BIL-1508/update-product-trial-ended-copy When product trials end, users on paid Business plans were incorrectly seeing "Keep using more by upgrading your plan" which was confusing since they're already on a Business plan. This change updates the trial ended banner to show different messages based on the user's plan: - Business plan users: "Your unlimited [Product] trial ended." (no upgrade prompt) - Team plan users: "Your unlimited [Product] trial ended. Keep using more by upgrading your plan." (shows upgrade prompt) - Free plan users: "Your unlimited [Product] trial ended. Keep using more by upgrading your plan." (shows upgrade prompt) The button behavior remains unchanged (Request Upgrade / Update Plan based on billing role), only the message text is updated for Business plan users. This fix ensures Business plan users see appropriate messaging without confusing upgrade prompts, while Team plan users are still encouraged to upgrade to Business.
…ended banner (#102466) Closes https://linear.app/getsentry/issue/BIL-1508/update-product-trial-ended-copy When product trials end, users on paid Business plans were incorrectly seeing "Keep using more by upgrading your plan" which was confusing since they're already on a Business plan. This change updates the trial ended banner to show different messages based on the user's plan: - Business plan users: "Your unlimited [Product] trial ended." (no upgrade prompt) - Team plan users: "Your unlimited [Product] trial ended. Keep using more by upgrading your plan." (shows upgrade prompt) - Free plan users: "Your unlimited [Product] trial ended. Keep using more by upgrading your plan." (shows upgrade prompt) The button behavior remains unchanged (Request Upgrade / Update Plan based on billing role), only the message text is updated for Business plan users. This fix ensures Business plan users see appropriate messaging without confusing upgrade prompts, while Team plan users are still encouraged to upgrade to Business.
Closes https://linear.app/getsentry/issue/BIL-1508/update-product-trial-ended-copy
When product trials end, users on paid Business plans were incorrectly seeing "Keep using more by upgrading your plan" which was confusing since they're already on a Business plan.
This change updates the trial ended banner to show different messages based on the user's plan:
The button behavior remains unchanged (Request Upgrade / Update Plan based on billing role), only the message text is updated for Business plan users.
This fix ensures Business plan users see appropriate messaging without confusing upgrade prompts, while Team plan users are still encouraged to upgrade to Business.