]> Untitled Git - lemmy-ui.git/commitdiff
New communities fetch limit is 50. (#711)
authorDessalines <dessalines@users.noreply.github.com>
Wed, 13 Jul 2022 14:27:43 +0000 (10:27 -0400)
committerGitHub <noreply@github.com>
Wed, 13 Jul 2022 14:27:43 +0000 (14:27 +0000)
src/shared/components/community/communities.tsx

index 0ed2787f10b2e23486b12e40c1fb464ac205a42a..db17084a3e56ebd0e74f8cb41055d234124e358a 100644 (file)
@@ -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<ListCommunitiesResponse>;