From 08bee5505625a7e310e7103de4e58c7278ffbff3 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Wed, 13 Jul 2022 10:27:43 -0400 Subject: [PATCH] New communities fetch limit is 50. (#711) --- src/shared/components/community/communities.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/components/community/communities.tsx b/src/shared/components/community/communities.tsx index 0ed2787..db17084 100644 --- a/src/shared/components/community/communities.tsx +++ b/src/shared/components/community/communities.tsx @@ -35,7 +35,7 @@ import { ListingTypeSelect } from "../common/listing-type-select"; import { Paginator } from "../common/paginator"; import { CommunityLink } from "./community-link"; -const communityLimit = 100; +const communityLimit = 50; interface CommunitiesState { listCommunitiesResponse: Option; -- 2.44.1