temp fix for user list react key

This commit is contained in:
Pavel Prichodko 2023-01-20 15:20:20 +01:00
parent 814c857457
commit bf9e76d960
No known key found for this signature in database
GPG Key ID: 0EB8D75C775AB6F1
1 changed files with 2 additions and 2 deletions

View File

@ -16,10 +16,10 @@ const UserList = (props: Props) => {
return (
<YStack>
{users.map(user => {
{users.map((user, index) => {
return (
<XStack
key={user.address}
key={user.address! + index}
padding={8}
space={8}
borderRadius={12}