diff --git a/client/src/components/Conversations/Convo.tsx b/client/src/components/Conversations/Convo.tsx index 4bf23fa901..9a9e83046b 100644 --- a/client/src/components/Conversations/Convo.tsx +++ b/client/src/components/Conversations/Convo.tsx @@ -112,8 +112,9 @@ export default function Conversation({ conversation, retainView, toggleNav, isLa }; const aProps = { - className: - 'group relative rounded-lg active:opacity-50 flex cursor-pointer items-center mt-2 gap-3 break-all rounded-lg bg-gray-800 py-2 px-2', + className: `group relative rounded-lg active:opacity-50 flex cursor-pointer items-center mt-2 gap-3 break-all rounded-lg bg-gray-800 py-2 px-2 ${ + renaming ? 'pr-14' : '' + }`, }; const activeConvo = @@ -150,7 +151,11 @@ export default function Conversation({ conversation, retainView, toggleNav, isLa )} {activeConvo ? ( -
+
) : (
)}