mirror of
https://github.com/tooot-app/app
synced 2025-06-05 22:19:13 +02:00
@ -53,7 +53,6 @@ const TabMeFollowedTags: React.FC<TabMeStackScreenProps<'Tab-Me-FollowedTags'>>
|
|||||||
renderItem={({ item }) => (
|
renderItem={({ item }) => (
|
||||||
<ComponentHashtag
|
<ComponentHashtag
|
||||||
hashtag={item}
|
hashtag={item}
|
||||||
onPress={() => {}}
|
|
||||||
children={
|
children={
|
||||||
<Button
|
<Button
|
||||||
type='text'
|
type='text'
|
||||||
|
@ -91,13 +91,7 @@ const SearchEmpty: React.FC<Props> = ({ isFetching, inputRef, setSearchTerm }) =
|
|||||||
return (
|
return (
|
||||||
<React.Fragment key={index}>
|
<React.Fragment key={index}>
|
||||||
{index !== 0 ? <ComponentSeparator /> : null}
|
{index !== 0 ? <ComponentSeparator /> : null}
|
||||||
<ComponentHashtag
|
<ComponentHashtag hashtag={hashtag} />
|
||||||
hashtag={hashtag}
|
|
||||||
onPress={() => {
|
|
||||||
inputRef.current?.setNativeProps({ text: `#${hashtag.name}` })
|
|
||||||
setSearchTerm(`#${hashtag.name}`)
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</React.Fragment>
|
</React.Fragment>
|
||||||
)
|
)
|
||||||
})}
|
})}
|
||||||
|
Reference in New Issue
Block a user