mirror of
https://github.com/status-im/dappconnect-chat-sdk.git
synced 2025-01-12 15:04:52 +00:00
temp fix for user list react key
This commit is contained in:
parent
814c857457
commit
bf9e76d960
@ -16,10 +16,10 @@ const UserList = (props: Props) => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<YStack>
|
<YStack>
|
||||||
{users.map(user => {
|
{users.map((user, index) => {
|
||||||
return (
|
return (
|
||||||
<XStack
|
<XStack
|
||||||
key={user.address}
|
key={user.address! + index}
|
||||||
padding={8}
|
padding={8}
|
||||||
space={8}
|
space={8}
|
||||||
borderRadius={12}
|
borderRadius={12}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user