Skip to content

Commit fd8d393

Browse files
committed
Update SharedModal.js
1 parent 34e6d99 commit fd8d393

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/components/utilities/SharedModal.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ function mapBodyComponent({ componentType, data, componentProps }) {
2020
case 'text':
2121
return String(data)
2222
case 'codeblock':
23-
return <CippCodeBlock language="text" code={data} {...componentProps} />
23+
return (
24+
<CippCodeBlock language="text" code={data} showLineNumbers={false} {...componentProps} />
25+
)
2426
default:
2527
return String(data)
2628
}

0 commit comments

Comments
 (0)