From b4a4007f6640e11d49ce0761f2753df50ee93fc1 Mon Sep 17 00:00:00 2001 From: ajaythapliyal Date: Sun, 26 Feb 2023 20:04:55 +0530 Subject: [PATCH] word wrap fix --- frontend/src/conversation/Conversation.tsx | 2 +- frontend/src/conversation/ConversationBubble.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/conversation/Conversation.tsx b/frontend/src/conversation/Conversation.tsx index 89ce3b9..2102ec2 100644 --- a/frontend/src/conversation/Conversation.tsx +++ b/frontend/src/conversation/Conversation.tsx @@ -49,7 +49,7 @@ export default function Conversation() {
{ if (e.key === 'Enter' && !e.shiftKey) { e.preventDefault(); diff --git a/frontend/src/conversation/ConversationBubble.tsx b/frontend/src/conversation/ConversationBubble.tsx index 9a1fd43..1573a92 100644 --- a/frontend/src/conversation/ConversationBubble.tsx +++ b/frontend/src/conversation/ConversationBubble.tsx @@ -35,7 +35,7 @@ const ConversationBubble = forwardRef< {type === 'ERROR' && ( alert )} -

{message}

+

{message}

);