diff options
Diffstat (limited to 'src/view/com')
-rw-r--r-- | src/view/com/lists/ProfileLists.tsx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/view/com/lists/ProfileLists.tsx b/src/view/com/lists/ProfileLists.tsx index ed42a2607..692891e47 100644 --- a/src/view/com/lists/ProfileLists.tsx +++ b/src/view/com/lists/ProfileLists.tsx @@ -75,7 +75,12 @@ export function ProfileLists({ items = items.concat([EMPTY]) } else if (data?.pages) { for (const page of data?.pages) { - items = items.concat(page.lists) + items = items.concat( + page.lists.map(l => ({ + ...l, + _reactKey: l.uri, + })), + ) } } if (isError && !isEmpty) { |