diff options
author | Eric Bailey <git@esb.lol> | 2024-06-14 14:28:25 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-14 14:28:25 -0500 |
commit | eaef1446f2236cc4c8993e4c57d5bcc5bb2263d9 (patch) | |
tree | fc5e0f232748bf1c014687851cc92073992d15ab /src/view | |
parent | 5751014117ff87a0b5188841b468095f00305ed5 (diff) | |
download | voidsky-eaef1446f2236cc4c8993e4c57d5bcc5bb2263d9.tar.zst |
Use URI as key (#4522)
Diffstat (limited to 'src/view')
-rw-r--r-- | src/view/screens/Search/Search.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/screens/Search/Search.tsx b/src/view/screens/Search/Search.tsx index f1b0301d0..ed132d24e 100644 --- a/src/view/screens/Search/Search.tsx +++ b/src/view/screens/Search/Search.tsx @@ -307,7 +307,7 @@ let SearchScreenFeedsResults = ({ pinOnSave /> )} - keyExtractor={item => item.did} + keyExtractor={item => item.uri} // @ts-ignore web only -prf desktopFixedHeight contentContainerStyle={{paddingBottom: 100}} |