ai/at
1
0

fix social-app ios patch feed

This commit is contained in:
2025-12-11 11:48:17 +09:00
parent 744f1d2806
commit 6a02d661fb
6 changed files with 79 additions and 4 deletions

View File

@@ -0,0 +1,19 @@
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')