Add convoId as key to Convo wrapper (#4140)

This commit is contained in:
Eric Bailey
2024-05-20 21:59:55 -05:00
committed by GitHub
parent 6b6a002b0a
commit 8be65a8790
+1 -1
View File
@@ -52,7 +52,7 @@ export function MessagesConversationScreen({route}: Props) {
)
return (
<ConvoProvider convoId={convoId}>
<ConvoProvider key={convoId} convoId={convoId}>
<Inner />
</ConvoProvider>
)