Skip to content

Commit 54bba2e

Browse files
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
1 parent 89ffcf4 commit 54bba2e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/web/src/components/ChatView.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ export default function ChatView({ threadId }: ChatViewProps) {
269269
// Tracks whether the user explicitly dismissed the sidebar for the active turn.
270270
const planSidebarDismissedForTurnRef = useRef<string | null>(null);
271271
// When set, the thread-change reset effect will open the sidebar instead of closing it.
272-
// Used by "Implement in new thread" to carry the sidebar-open intent across navigation.
272+
// Used by "Implement in a new thread" to carry the sidebar-open intent across navigation.
273273
const planSidebarOpenOnNextThreadRef = useRef(false);
274274
const [nowTick, setNowTick] = useState(() => Date.now());
275275
const [terminalFocusRequestId, setTerminalFocusRequestId] = useState(0);
@@ -3710,7 +3710,7 @@ export default function ChatView({ threadId }: ChatViewProps) {
37103710
disabled={isSendBusy || isConnecting}
37113711
onClick={() => void onImplementPlanInNewThread()}
37123712
>
3713-
Implement in new thread
3713+
Implement in a new thread
37143714
</MenuItem>
37153715
</MenuPopup>
37163716
</Menu>

0 commit comments

Comments
 (0)