agent_thread: Improve wording of confirmation label text in agent thread (#48202)

Kunall Banerjee created

Waiting is usually followed by β€œfor,” which would make the label too
wordy. Awaiting is transitive and requires a direct object, in this case
your confirmation.

Really not a crazy change, but something that has been bothering me for
quite some time now. πŸ˜…

Release Notes:

- Improved wording of confirmation label text in agent thread

Change summary

crates/agent_ui/src/acp/thread_view.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

crates/agent_ui/src/acp/thread_view.rs πŸ”—

@@ -7678,7 +7678,7 @@ impl AcpServerView {
                     )
                     .child(
                         div().min_w(rems(8.)).child(
-                            LoadingLabel::new("Waiting Confirmation")
+                            LoadingLabel::new("Awaiting Confirmation")
                                 .size(LabelSize::Small)
                                 .color(Color::Muted),
                         ),