From 220a80113805972eda874ccd33104584a859be31 Mon Sep 17 00:00:00 2001 From: Ayaan Date: Sun, 12 Jan 2025 17:20:40 +0530 Subject: [PATCH] Requested changes --- .../src/conversation/ConversationBubble.tsx | 42 ++++++++++--------- 1 file changed, 22 insertions(+), 20 deletions(-) diff --git a/frontend/src/conversation/ConversationBubble.tsx b/frontend/src/conversation/ConversationBubble.tsx index 3edec0dd..8cdb90f2 100644 --- a/frontend/src/conversation/ConversationBubble.tsx +++ b/frontend/src/conversation/ConversationBubble.tsx @@ -93,24 +93,35 @@ const ConversationBubble = forwardRef< >
} /> {!isEditClicked && ( -
- {message} -
+ <> +
+ {message} +
+ + )} {isEditClicked && (
)} -
);