Fix sign in disclaimer to accurately show trial benefits (#55964)
Katie Geer
created
Self-Review Checklist:
- [ x] I've reviewed my own diff for quality, security, and reliability
- [x ] Unsafe blocks (if any) have justifying comments
- [x ] The content is consistent with the [UI/UX
checklist](https://github.com/zed-industries/zed/blob/main/CONTRIBUTING.md#uiux-checklist)
- [x ] Tests cover the new/changed behavior
- [x ] Performance impact has been considered and is acceptable
Release Notes:
- N/A
@@ -156,11 +156,11 @@ impl ZedAiOnboarding {
.gap_1()
.child(Headline::new("Welcome to Zed AI"))
.child(
- Label::new("Sign in to try Zed Pro for 14 days, no credit card required.")
+ Label::new("Sign in to try Zed Pro free for 14 days.")
.color(Color::Muted)
.mb_2(),
)
- .child(PlanDefinitions.pro_plan())
+ .child(PlanDefinitions.sign_in_upsell())
.child(
Button::new("sign_in", "Try Zed Pro for Free")
.disabled(signing_in)