Skip to content

Commit 9eef0a2

Browse files
committed
wrapping is default false
1 parent 36cb558 commit 9eef0a2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

apps/webapp/app/components/code/CodeBlock.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ export const CodeBlock = forwardRef<HTMLDivElement, CodeBlockProps>(
188188
(
189189
{
190190
showCopyButton = true,
191-
showTextWrapping = true,
191+
showTextWrapping = false,
192192
showLineNumbers = true,
193193
showOpenInModal = true,
194194
highlightedRanges,

apps/webapp/app/components/runs/v3/PacketDisplay.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ export function PacketDisplay({
4444
code={data}
4545
maxLines={20}
4646
showLineNumbers={false}
47+
showTextWrapping
4748
/>
4849
);
4950
}

0 commit comments

Comments
 (0)