61 lines
2.2 KiB
Diff
61 lines
2.2 KiB
Diff
diff --git a/src/view/com/posts/FollowingEmptyState.tsx b/src/view/com/posts/FollowingEmptyState.tsx
|
|
index 352cc1dc0..06987be51 100644
|
|
--- a/src/view/com/posts/FollowingEmptyState.tsx
|
|
+++ b/src/view/com/posts/FollowingEmptyState.tsx
|
|
@@ -45,36 +45,6 @@ export function FollowingEmptyState() {
|
|
happening.
|
|
</Trans>
|
|
</Text>
|
|
- <Button
|
|
- type="inverted"
|
|
- style={styles.emptyBtn}
|
|
- onPress={onPressFindAccounts}>
|
|
- <Text type="lg-medium" style={palInverted.text}>
|
|
- <Trans>Find accounts to follow</Trans>
|
|
- </Text>
|
|
- <FontAwesomeIcon
|
|
- icon="angle-right"
|
|
- style={palInverted.text as FontAwesomeIconStyle}
|
|
- size={14}
|
|
- />
|
|
- </Button>
|
|
-
|
|
- <Text type="xl-medium" style={[s.textCenter, pal.text, s.mt20]}>
|
|
- <Trans>You can also discover new Custom Feeds to follow.</Trans>
|
|
- </Text>
|
|
- <Button
|
|
- type="inverted"
|
|
- style={[styles.emptyBtn, s.mt10]}
|
|
- onPress={onPressDiscoverFeeds}>
|
|
- <Text type="lg-medium" style={palInverted.text}>
|
|
- <Trans>Discover new custom feeds</Trans>
|
|
- </Text>
|
|
- <FontAwesomeIcon
|
|
- icon="angle-right"
|
|
- style={palInverted.text as FontAwesomeIconStyle}
|
|
- size={14}
|
|
- />
|
|
- </Button>
|
|
</View>
|
|
</View>
|
|
)
|
|
diff --git a/src/view/com/posts/PostFeed.tsx b/src/view/com/posts/PostFeed.tsx
|
|
index 4f25468c9..c35ad1c1a 100644
|
|
--- a/src/view/com/posts/PostFeed.tsx
|
|
+++ b/src/view/com/posts/PostFeed.tsx
|
|
@@ -543,14 +543,6 @@ let PostFeed = ({
|
|
})
|
|
}
|
|
} else if (feedKind === 'following') {
|
|
- if (sliceIndex === 0) {
|
|
- // Show composer prompt for Following feed
|
|
- if (hasSession && gate('show_composer_prompt')) {
|
|
- arr.push({
|
|
- type: 'composerPrompt',
|
|
- key: 'composerPrompt-' + sliceIndex,
|
|
- })
|
|
- }
|
|
}
|
|
} else if (feedKind === 'profile') {
|
|
if (sliceIndex === 5) {
|