diff --git a/client/src/components/Chat.jsx b/client/src/components/Chat.jsx index ec5be720..89b92ad6 100644 --- a/client/src/components/Chat.jsx +++ b/client/src/components/Chat.jsx @@ -437,15 +437,20 @@ const Chat = () => { // is this message currently being replied? const hasActiveReply = currentReplyMessageId === id; + const activeReplyClass = hasActiveReply ? 'bg-[#FF9F1C]/25 border-[#FF9F1C]' : ''; + const activeReplySenderClass = hasActiveReply + ? isSender + ? 'border-r-[3.5px]' + : 'border-l-[3.5px]' + : ''; return (
{replyTo && (