diff --git a/apps/xmtp.chat/src/components/NewConversation.tsx b/apps/xmtp.chat/src/components/NewConversation.tsx index 8e23b5eb..c5050cbf 100644 --- a/apps/xmtp.chat/src/components/NewConversation.tsx +++ b/apps/xmtp.chat/src/components/NewConversation.tsx @@ -134,6 +134,10 @@ export const NewConversation: React.FC = () => { ? policySet : undefined, }); + // automatically sync when creating a group with no members + if (!isDmGroup && members.length === 0) { + await conversation.sync(); + } void navigate(`/conversations/${conversation.id}`); };