From 54bba2ef3e4b3150902995893c1e9eee6c9a1768 Mon Sep 17 00:00:00 2001 From: UtkarshUsername Date: Fri, 13 Mar 2026 22:49:29 +0530 Subject: [PATCH] Clarify 'Implement in a new thread' action label - Update menu item text for the implement action - Align related code comment wording with the new label --- apps/web/src/components/ChatView.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/src/components/ChatView.tsx b/apps/web/src/components/ChatView.tsx index 9f625762c..970f7473a 100644 --- a/apps/web/src/components/ChatView.tsx +++ b/apps/web/src/components/ChatView.tsx @@ -269,7 +269,7 @@ export default function ChatView({ threadId }: ChatViewProps) { // Tracks whether the user explicitly dismissed the sidebar for the active turn. const planSidebarDismissedForTurnRef = useRef(null); // When set, the thread-change reset effect will open the sidebar instead of closing it. - // Used by "Implement in new thread" to carry the sidebar-open intent across navigation. + // Used by "Implement in a new thread" to carry the sidebar-open intent across navigation. const planSidebarOpenOnNextThreadRef = useRef(false); const [nowTick, setNowTick] = useState(() => Date.now()); const [terminalFocusRequestId, setTerminalFocusRequestId] = useState(0); @@ -3710,7 +3710,7 @@ export default function ChatView({ threadId }: ChatViewProps) { disabled={isSendBusy || isConnecting} onClick={() => void onImplementPlanInNewThread()} > - Implement in new thread + Implement in a new thread