From b4af5b2ce06e1adcef32e404688972c9519a9094 Mon Sep 17 00:00:00 2001 From: 5brian Date: Wed, 2 Apr 2025 18:33:05 -0400 Subject: [PATCH] agent: Update thread label to use plural form (#27971) Update thread label to match the other contexts. |Before|After| |--|--| |![image](https://github.com/user-attachments/assets/6e02808e-50d7-480f-a9ca-251e9519a71d)|![image](https://github.com/user-attachments/assets/174aad84-9e55-4531-bb4a-1a1adaa46418)| Release Notes: - N/A --- crates/agent/src/context_picker.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/agent/src/context_picker.rs b/crates/agent/src/context_picker.rs index ca25da1515..6b6254cf7f 100644 --- a/crates/agent/src/context_picker.rs +++ b/crates/agent/src/context_picker.rs @@ -76,7 +76,7 @@ impl ContextPickerMode { Self::File => "Files & Directories", Self::Symbol => "Symbols", Self::Fetch => "Fetch", - Self::Thread => "Thread", + Self::Thread => "Threads", } }