diff --git a/src/App.tsx b/src/App.tsx index 7b92c8fd4..e857e1521 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -889,7 +889,12 @@ function App() { > )} - + = 3} + /> void; visibleApps?: VisibleApps; + compact?: boolean; } const ALL_APPS: AppId[] = ["claude", "codex", "gemini", "opencode"]; -export function AppSwitcher({ activeApp, onSwitch, visibleApps }: AppSwitcherProps) { +export function AppSwitcher({ activeApp, onSwitch, visibleApps, compact }: AppSwitcherProps) { const handleSwitch = (app: AppId) => { if (app === activeApp) return; onSwitch(app); @@ -52,13 +53,8 @@ export function AppSwitcher({ activeApp, onSwitch, visibleApps }: AppSwitcherPro icon={appIconName[app]} name={appDisplayName[app]} size={iconSize} - className={ - activeApp === app - ? "text-foreground" - : "text-muted-foreground group-hover:text-foreground transition-colors" - } /> - {appDisplayName[app]} + {!compact && {appDisplayName[app]}} ))}