diff --git a/thoughts-frontend/app/page.tsx b/thoughts-frontend/app/page.tsx index 1e978f7..c773679 100644 --- a/thoughts-frontend/app/page.tsx +++ b/thoughts-frontend/app/page.tsx @@ -46,7 +46,7 @@ async function FeedPage({ token }: { token: string }) { ); const friends = (await getFriends(token)).users.map((user) => user.username); - const shouldDisplayTopFriends = me?.topFriends && me.topFriends.length > 0; + const shouldDisplayTopFriends = me?.topFriends && me.topFriends.length > 8; return (