From 6c52e4a318f6766d1e0dc7a4d87789f8614b501c Mon Sep 17 00:00:00 2001 From: Brooklyn Nicholson Date: Sun, 28 Jun 2026 21:22:17 -0500 Subject: [PATCH] fix(desktop): match agent terminal scrollback to user tabs Keep read-only agent terminal tabs visually and behaviorally aligned with normal terminal tabs by using the same 1,000-line scrollback cap. --- .../src/app/right-sidebar/terminal/use-agent-terminal.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/desktop/src/app/right-sidebar/terminal/use-agent-terminal.ts b/apps/desktop/src/app/right-sidebar/terminal/use-agent-terminal.ts index ba2695075c6bc..bb6aaeaff327d 100644 --- a/apps/desktop/src/app/right-sidebar/terminal/use-agent-terminal.ts +++ b/apps/desktop/src/app/right-sidebar/terminal/use-agent-terminal.ts @@ -48,7 +48,7 @@ export function useAgentTerminal({ active, id, procId }: { active: boolean; id: letterSpacing: 0, lineHeight: 1.12, minimumContrastRatio: 4.5, - scrollback: 5000, + scrollback: 1000, theme: surfaceTheme() })