diff options
author | Eric Bailey <git@esb.lol> | 2024-05-20 21:59:55 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-20 21:59:55 -0500 |
commit | 8be65a87903b4422601bf0e8da9aba2e5a8d7627 (patch) | |
tree | 5e3a00e755d38643a9df06e25b1334c89eb3be39 | |
parent | 6b6a002b0a51fe705b7d4051187d733bf0c2878c (diff) | |
download | voidsky-8be65a87903b4422601bf0e8da9aba2e5a8d7627.tar.zst |
Add convoId as key to Convo wrapper (#4140)
-rw-r--r-- | src/screens/Messages/Conversation/index.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screens/Messages/Conversation/index.tsx b/src/screens/Messages/Conversation/index.tsx index eaa3ddecb..d21887de3 100644 --- a/src/screens/Messages/Conversation/index.tsx +++ b/src/screens/Messages/Conversation/index.tsx @@ -52,7 +52,7 @@ export function MessagesConversationScreen({route}: Props) { ) return ( - <ConvoProvider convoId={convoId}> + <ConvoProvider key={convoId} convoId={convoId}> <Inner /> </ConvoProvider> ) |