Use consistent text

Joseph T. Lyons created

Change summary

crates/feedback2/src/deploy_feedback_button.rs | 2 +-
crates/feedback2/src/feedback_modal.rs         | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)

Detailed changes

crates/feedback2/src/deploy_feedback_button.rs 🔗

@@ -32,7 +32,7 @@ impl Render for DeployFeedbackButton {
         IconButton::new("give-feedback", Icon::Envelope)
             .style(ui::ButtonStyle::Subtle)
             .selected(is_open)
-            .tooltip(|cx| Tooltip::text("Give Feedback", cx))
+            .tooltip(|cx| Tooltip::text("Share Feedback", cx))
             .on_click(|_, cx| {
                 cx.dispatch_action(Box::new(GiveFeedback));
             })

crates/feedback2/src/feedback_modal.rs 🔗

@@ -263,9 +263,9 @@ impl Render for FeedbackModal {
         let has_feedback = self.feedback_editor.read(cx).text_option(cx).is_some();
 
         let submit_button_text = if self.pending_submission {
-            "Sending..."
+            "Submitting..."
         } else {
-            "Send Feedback"
+            "Submit"
         };
         let dismiss = cx.listener(|_, _, cx| {
             cx.emit(DismissEvent);
@@ -379,7 +379,7 @@ impl Render for FeedbackModal {
                                             .color(Color::Accent)
                                             .style(ButtonStyle::Filled)
                                             // TODO: Ensure that while submitting, "Sending..." is shown and disable the button
-                                            // TODO: If submit errors: show popup with error, don't close modal, set text back to "Send Feedback", and re-enable button
+                                            // TODO: If submit errors: show popup with error, don't close modal, set text back to "Submit", and re-enable button
                                             // TODO: If submit is successful, close the modal
                                             .on_click(cx.listener(|this, _, cx| {
                                                 let _ = this.submit(cx);