Fix crash when adding specific tags
Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
@@ -96,7 +96,6 @@ const MemeTagSearchModal = ({
|
||||
ref={flashListRef}
|
||||
data={tags}
|
||||
extraData={memeTags}
|
||||
keyExtractor={tag => tag.id.toHexString()}
|
||||
horizontal
|
||||
estimatedItemSize={120}
|
||||
showsHorizontalScrollIndicator={false}
|
||||
|
@@ -31,7 +31,6 @@ const MemeTagSelector = ({
|
||||
<FlashList
|
||||
data={[...memeTags.values()]}
|
||||
extraData={memeTags}
|
||||
keyExtractor={tag => tag.id.toHexString()}
|
||||
horizontal
|
||||
estimatedItemSize={120}
|
||||
showsHorizontalScrollIndicator={false}
|
||||
|
@@ -194,7 +194,6 @@ const Tags = () => {
|
||||
<FlashList
|
||||
ref={flashListRef}
|
||||
data={tags}
|
||||
keyExtractor={tag => tag.id.toHexString()}
|
||||
estimatedItemSize={52}
|
||||
showsVerticalScrollIndicator={false}
|
||||
renderItem={({ item: tag }) => (
|
||||
|
Reference in New Issue
Block a user