diff options
Diffstat (limited to 'src/view')
-rw-r--r-- | src/view/com/posts/CustomFeedEmptyState.tsx | 16 | ||||
-rw-r--r-- | src/view/screens/Home.tsx | 1 |
2 files changed, 0 insertions, 17 deletions
diff --git a/src/view/com/posts/CustomFeedEmptyState.tsx b/src/view/com/posts/CustomFeedEmptyState.tsx index 69dd79902..e51794e7c 100644 --- a/src/view/com/posts/CustomFeedEmptyState.tsx +++ b/src/view/com/posts/CustomFeedEmptyState.tsx @@ -9,14 +9,12 @@ import {Text} from '../util/text/Text' import {Button} from '../util/forms/Button' import {MagnifyingGlassIcon} from 'lib/icons' import {NavigationProp} from 'lib/routes/types' -import {useStores} from 'state/index' import {usePalette} from 'lib/hooks/usePalette' import {s} from 'lib/styles' export function CustomFeedEmptyState() { const pal = usePalette('default') const palInverted = usePalette('inverted') - const store = useStores() const navigation = useNavigation<NavigationProp>() const onPressFindAccounts = React.useCallback(() => { @@ -24,10 +22,6 @@ export function CustomFeedEmptyState() { navigation.popToTop() }, [navigation]) - const onPressSettings = React.useCallback(() => { - store.shell.openModal({name: 'content-languages-settings'}) - }, [store]) - return ( <View style={styles.emptyContainer}> <View style={styles.emptyIconContainer}> @@ -50,16 +44,6 @@ export function CustomFeedEmptyState() { size={14} /> </Button> - <Button type="inverted" style={styles.emptyBtn} onPress={onPressSettings}> - <Text type="lg-medium" style={palInverted.text}> - Update my settings - </Text> - <FontAwesomeIcon - icon="angle-right" - style={palInverted.text as FontAwesomeIconStyle} - size={14} - /> - </Button> </View> ) } diff --git a/src/view/screens/Home.tsx b/src/view/screens/Home.tsx index d761994f3..f8a497028 100644 --- a/src/view/screens/Home.tsx +++ b/src/view/screens/Home.tsx @@ -53,7 +53,6 @@ export const HomeScreen = withAuthRequired( model.setup() feeds.push(model) } - pagerRef.current?.setPage(0) setCustomFeeds(feeds) }, [store, store.me.savedFeeds.pinned, customFeeds, setCustomFeeds]) |