Skip to content

Commit 1fc13e4

Browse files
committed
Remove hardcoded 120-character width limit in terminal command display
1 parent 415374c commit 1fc13e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/src/components/terminal-command-display.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export const TerminalCommandDisplay = ({
7777
}
7878

7979
// With output - calculate visual lines
80-
const width = Math.max(10, Math.min(contentMaxWidth - padding * 2, 120))
80+
const width = Math.max(10, contentMaxWidth - padding * 2)
8181
const allLines = output.split('\n')
8282

8383
// Calculate total visual lines across all output lines

0 commit comments

Comments
 (0)