word wrap fix

This commit is contained in:
ajaythapliyal
2023-02-26 20:04:55 +05:30
parent 2348848c18
commit b4a4007f66
2 changed files with 2 additions and 2 deletions

View File

@@ -35,7 +35,7 @@ const ConversationBubble = forwardRef<
{type === 'ERROR' && (
<img src={Alert} alt="alert" className="mr-2 inline" />
)}
<p className="whitespace-pre-wrap break-all">{message}</p>
<p className="whitespace-pre-wrap break-words">{message}</p>
</div>
</div>
);