From 8d70dc480063a64f86c7cd6ba10c918feba1f12a Mon Sep 17 00:00:00 2001 From: James Grugett Date: Mon, 3 Oct 2022 18:22:18 -0500 Subject: [PATCH] Increase trending group count again. (It's uglier, but it's way more useful!) --- web/pages/home/index.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/web/pages/home/index.tsx b/web/pages/home/index.tsx index b00d3f2f..a46b6d02 100644 --- a/web/pages/home/index.tsx +++ b/web/pages/home/index.tsx @@ -409,7 +409,7 @@ export function TrendingGroupsSection(props: { const groups = useTrendingGroups().filter( (g) => !memberGroupIds.includes(g.id) ) - const count = 7 + const count = 20 const chosenGroups = groups.slice(0, count) if (chosenGroups.length === 0) { @@ -419,6 +419,9 @@ export function TrendingGroupsSection(props: { return ( +
+ Follow groups you are interested in. +
{chosenGroups.map((g) => (