Add convoId as key to Convo wrapper (#4140)

zio/stable
Eric Bailey 2024-05-20 21:59:55 -05:00 committed by GitHub
parent 6b6a002b0a
commit 8be65a8790
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ export function MessagesConversationScreen({route}: Props) {
)
return (
<ConvoProvider convoId={convoId}>
<ConvoProvider key={convoId} convoId={convoId}>
<Inner />
</ConvoProvider>
)