From bfdb528a761897e4ab61e10df32125a910a1f176 Mon Sep 17 00:00:00 2001 From: Brooklyn Nicholson Date: Thu, 21 May 2026 14:09:35 -0500 Subject: [PATCH] fix: fs icon color --- apps/desktop/src/app/right-sidebar/terminal/index.tsx | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/apps/desktop/src/app/right-sidebar/terminal/index.tsx b/apps/desktop/src/app/right-sidebar/terminal/index.tsx index f305b94ef00..9e063ccac54 100644 --- a/apps/desktop/src/app/right-sidebar/terminal/index.tsx +++ b/apps/desktop/src/app/right-sidebar/terminal/index.tsx @@ -22,22 +22,25 @@ export function TerminalTab({ cwd, onAddSelectionToChat }: TerminalTabProps) { cwd, onAddSelectionToChat }) + const takeover = useStore($terminalTakeover) const label = takeover ? 'Return to split view' : 'Focus terminal view' const toggleTakeover = () => { // Pre-select the Terminal tab so the slot is ready to host us on return. - if (takeover) setRightSidebarTab('terminal') + if (takeover) { + setRightSidebarTab('terminal') + } setTerminalTakeover(!takeover) } return (
-
- {shellName} +
+ {shellName}