ai/at
1
0
Files
at/ios/patching/034-social-app-ios-home-header-no-feeds.patch
2025-12-11 11:48:17 +09:00

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')