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.
This commit is contained in:
Brooklyn Nicholson 2026-06-28 21:22:17 -05:00
parent adacb16d62
commit 6c52e4a318
1 changed files with 1 additions and 1 deletions

View File

@ -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()
})