From 0a550294e9f896e2091a683d9c5c0d1327426d4e Mon Sep 17 00:00:00 2001 From: Ronen Mars Date: Mon, 27 Jul 2026 01:44:41 +0300 Subject: [PATCH] fix(terminal): show full session history instead of last 5000 lines --- hooks/useTerminalStream.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hooks/useTerminalStream.ts b/hooks/useTerminalStream.ts index 940ce9a6..27966c98 100644 --- a/hooks/useTerminalStream.ts +++ b/hooks/useTerminalStream.ts @@ -67,7 +67,7 @@ export function useTerminalStream( // Low parse confidence → raw lines so we never present chrome-filtered // output as if normalization were authoritative. const visible = confidence === 'low' ? vt.getRawLines() : vt.getLines() - setLines(visible.slice(-maxLines)) + setLines(visible) } const historyQuery = useQuery({