From: Dessalines Date: Wed, 13 Jul 2022 14:27:43 +0000 (-0400) Subject: New communities fetch limit is 50. (#711) X-Git-Url: http://these/git/?a=commitdiff_plain;h=08bee5505625a7e310e7103de4e58c7278ffbff3;p=lemmy-ui.git New communities fetch limit is 50. (#711) --- 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;