From 1a405500ca8ea9ae2a483b275cc46319abbe4591 Mon Sep 17 00:00:00 2001 From: Gabriel Kaszewski Date: Sun, 7 Sep 2025 15:16:18 +0200 Subject: [PATCH] feat: update top friends display condition to require more than 8 friends --- thoughts-frontend/app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 (