From 1b16b1215f0e4dcb298ec7636853310fb5ccb89d Mon Sep 17 00:00:00 2001 From: Varsha Menon Date: Fri, 22 Nov 2024 10:59:15 -0500 Subject: [PATCH] fix: spacing issue breaks --- src/components/ChatBox/index.jsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/components/ChatBox/index.jsx b/src/components/ChatBox/index.jsx index cf32b145..df2eec73 100644 --- a/src/components/ChatBox/index.jsx +++ b/src/components/ChatBox/index.jsx @@ -26,9 +26,7 @@ const ChatBox = ({ chatboxContainerRef }) => { {messagesBeforeToday.map(({ role, content, timestamp }) => ( ))} - {(messageList.length !== 0 && messagesBeforeToday.length !== 0) && ( - - )} + {(messageList.length !== 0 && messagesBeforeToday.length !== 0) && ()} {messagesToday.map(({ role, content, timestamp }) => ( ))}