Skip to content

Commit 149965e

Browse files
committed
Fix inconsistent newline formatting
1 parent 41911ce commit 149965e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/MDX/ErrorDecoder.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export default function ErrorDecoder() {
101101
'block bg-red-100 text-red-600 py-4 px-6 mt-5 rounded-lg',
102102
isReady ? 'opacity-100' : 'opacity-0'
103103
)}>
104-
<b>{message}</b>
104+
<pre className="font-bold whitespace-pre-wrap">{message}</pre>
105105
</code>
106106
);
107107
}

0 commit comments

Comments
 (0)