From 7b01267b4b3a7124925c1e82e68e31a59877ed72 Mon Sep 17 00:00:00 2001 From: Ben Kunkle Date: Fri, 17 Apr 2026 06:36:32 -0500 Subject: [PATCH] Improve edit prediction button sign in copy (#54063) 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 Closes #ISSUE Release Notes: - N/A or Added/Fixed/Improved ... --- crates/edit_prediction_ui/src/edit_prediction_button.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/edit_prediction_ui/src/edit_prediction_button.rs b/crates/edit_prediction_ui/src/edit_prediction_button.rs index 3adc61fca39be9381ef559b3bcbdacfbe52138bb..d6772847ffb861038ee581bebac05bdf07118d9f 100644 --- a/crates/edit_prediction_ui/src/edit_prediction_button.rs +++ b/crates/edit_prediction_ui/src/edit_prediction_button.rs @@ -374,7 +374,7 @@ impl Render for EditPredictionButton { let tooltip_meta = if self.user_store.read(cx).current_user().is_some() { "Choose a Plan" } else { - "Sign In To Use" + "Configure a Provider" }; return div().child( @@ -442,7 +442,7 @@ impl Render for EditPredictionButton { if show_editor_predictions { tooltip_meta } else if user.is_none() { - "Sign In To Use" + "Sign In Or Configure a Provider" } else { "Hidden For This File" }