20 lines
627 B
Diff
20 lines
627 B
Diff
diff --git a/src/view/com/home/HomeHeader.tsx b/src/view/com/home/HomeHeader.tsx
|
|
index 4a2cf881f..0dd8547f7 100644
|
|
--- a/src/view/com/home/HomeHeader.tsx
|
|
+++ b/src/view/com/home/HomeHeader.tsx
|
|
@@ -28,12 +28,8 @@ export function HomeHeader(
|
|
}, [feeds, hasSession])
|
|
|
|
const items = React.useMemo(() => {
|
|
- const pinnedNames = feeds.map(f => f.displayName)
|
|
- if (!hasPinnedCustom) {
|
|
- return pinnedNames.concat('Feeds ✨')
|
|
- }
|
|
- return pinnedNames
|
|
- }, [hasPinnedCustom, feeds])
|
|
+ return ['Following']
|
|
+ }, [])
|
|
|
|
const onPressFeedsLink = React.useCallback(() => {
|
|
navigation.navigate('Feeds')
|