diff options
Diffstat (limited to 'src/view/com/feeds/CustomFeed.tsx')
-rw-r--r-- | src/view/com/feeds/CustomFeed.tsx | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/src/view/com/feeds/CustomFeed.tsx b/src/view/com/feeds/CustomFeed.tsx index 95726be64..8e1a78453 100644 --- a/src/view/com/feeds/CustomFeed.tsx +++ b/src/view/com/feeds/CustomFeed.tsx @@ -13,12 +13,11 @@ import {UserAvatar} from '../util/UserAvatar' import {Button} from '../util/forms/Button' import {observer} from 'mobx-react-lite' import {CustomFeedModel} from 'state/models/feeds/custom-feed' -import {useFocusEffect, useNavigation} from '@react-navigation/native' +import {useNavigation} from '@react-navigation/native' import {NavigationProp} from 'lib/routes/types' import {useStores} from 'state/index' import {pluralize} from 'lib/strings/helpers' import {AtUri} from '@atproto/api' -import {isWeb} from 'platform/detection' export const CustomFeed = observer( ({ @@ -26,26 +25,16 @@ export const CustomFeed = observer( style, showSaveBtn = false, showLikes = false, - reloadOnFocus = false, }: { item: CustomFeedModel style?: StyleProp<ViewStyle> showSaveBtn?: boolean showLikes?: boolean - reloadOnFocus?: boolean }) => { const store = useStores() const pal = usePalette('default') const navigation = useNavigation<NavigationProp>() - // TODO: this is pretty hacky, but it works for now - // causes issues on web - useFocusEffect(() => { - if (reloadOnFocus && !isWeb) { - item.reload() - } - }) - return ( <TouchableOpacity accessibilityRole="button" |