Skip to content

Commit f6f2f68

Browse files
committed
Fix text overflow
1 parent 3f220ab commit f6f2f68

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

frontend/src/components/blocks/interview/chat/chat-message.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ export const ChatMessage: React.FC<ChatMessageProps> = ({ message }) => {
2626
className={cn(
2727
'prose prose-neutral text-sm text-primary',
2828
'prose-a:text-blue-500 prose-code:text-secondary-foreground prose-pre:ml-2 prose-pre:bg-transparent prose-pre:p-0',
29-
'prose-headings:text-primary prose-strong:text-primary prose-p:text-primary'
29+
'prose-headings:text-primary prose-strong:text-primary prose-p:text-primary',
30+
'break-words'
3031
)}
3132
>
3233
{message.text}

0 commit comments

Comments
 (0)