diff --git a/client/src/components/Conversations/Convo.tsx b/client/src/components/Conversations/Convo.tsx index 510a0f407e..825fc54032 100644 --- a/client/src/components/Conversations/Convo.tsx +++ b/client/src/components/Conversations/Convo.tsx @@ -102,6 +102,9 @@ export default function Conversation({ const handleNavigation = (ctrlOrMetaKey: boolean) => { if (ctrlOrMetaKey) { toggleNav(); + const baseUrl = window.location.origin; + const path = `/c/${conversationId}`; + window.open(baseUrl + path, '_blank'); return; }