diff options
Diffstat (limited to 'src/view/com/pager/FeedsTabBarMobile.tsx')
-rw-r--r-- | src/view/com/pager/FeedsTabBarMobile.tsx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/view/com/pager/FeedsTabBarMobile.tsx b/src/view/com/pager/FeedsTabBarMobile.tsx index 3d1ed2c10..0952cb14c 100644 --- a/src/view/com/pager/FeedsTabBarMobile.tsx +++ b/src/view/com/pager/FeedsTabBarMobile.tsx @@ -33,8 +33,12 @@ export const FeedsTabBar = observer( }, [store]) const items = useMemo( - () => ['Following', "What's hot", ...store.me.savedFeeds.listOfFeedNames], - [store.me.savedFeeds.listOfFeedNames], + () => [ + 'Following', + "What's hot", + ...store.me.savedFeeds.listOfPinnedFeedNames, + ], + [store.me.savedFeeds.listOfPinnedFeedNames], ) return ( |