From 394aa58dc1dc19562672bbc0cd0fefb7c6c37dbc Mon Sep 17 00:00:00 2001 From: cpacker Date: Wed, 11 Feb 2026 15:41:48 -0800 Subject: [PATCH] fix: don't show redundant output clipped hint when line count is shown MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When both line clipping and char clipping triggered, the UI showed both "… +N lines" and "… output clipped". Now only the line count hint is shown since it already implies clipping. 👾 Generated with [Letta Code](https://letta.com) Co-Authored-By: Letta --- src/cli/components/CollapsedOutputDisplay.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cli/components/CollapsedOutputDisplay.tsx b/src/cli/components/CollapsedOutputDisplay.tsx index cfddf63..3e9e83b 100644 --- a/src/cli/components/CollapsedOutputDisplay.tsx +++ b/src/cli/components/CollapsedOutputDisplay.tsx @@ -88,8 +88,8 @@ export const CollapsedOutputDisplay = memo( )} - {/* Character clipping hint */} - {clippedByChars && ( + {/* Character clipping hint (only if not already showing line count) */} + {clippedByChars && hiddenCount === 0 && ( {" "}