fix keyExtractor
This commit is contained in:
@@ -86,7 +86,6 @@ export function PostQuotes({uri}: {uri: string}) {
|
|||||||
}) => {
|
}) => {
|
||||||
return (
|
return (
|
||||||
<FeedItem
|
<FeedItem
|
||||||
key={item.post.uri}
|
|
||||||
post={item.post}
|
post={item.post}
|
||||||
record={item.record}
|
record={item.record}
|
||||||
moderation={item.moderation}
|
moderation={item.moderation}
|
||||||
@@ -123,7 +122,7 @@ export function PostQuotes({uri}: {uri: string}) {
|
|||||||
return (
|
return (
|
||||||
<List
|
<List
|
||||||
data={quotes}
|
data={quotes}
|
||||||
keyExtractor={item => item.did}
|
keyExtractor={item => item.post.uri}
|
||||||
refreshing={isPTRing}
|
refreshing={isPTRing}
|
||||||
onRefresh={onRefresh}
|
onRefresh={onRefresh}
|
||||||
onEndReached={onEndReached}
|
onEndReached={onEndReached}
|
||||||
|
|||||||
Reference in New Issue
Block a user