From 82e8d67a78d25d32aaa7c52a258ab9dad30f821c Mon Sep 17 00:00:00 2001 From: Jacob Richman Date: Mon, 13 Apr 2026 12:26:45 -0700 Subject: [PATCH] Stop showing scrollbar unless we are in terminalBuffer mode (#25320) --- packages/cli/src/ui/components/InputPrompt.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/src/ui/components/InputPrompt.tsx b/packages/cli/src/ui/components/InputPrompt.tsx index b36de8ebb0..2091817745 100644 --- a/packages/cli/src/ui/components/InputPrompt.tsx +++ b/packages/cli/src/ui/components/InputPrompt.tsx @@ -1836,7 +1836,7 @@ export const InputPrompt: React.FC = ({ height={Math.min(buffer.viewportHeight, scrollableData.length)} width="100%" > - {isAlternateBuffer ? ( + {config.getUseTerminalBuffer() ? (