From: Dessalines Date: Wed, 21 Sep 2022 14:06:24 +0000 (-0400) Subject: Increase fetch limit for user and community searches. Fixes #756 (#773) X-Git-Url: http://these/git/%7B?a=commitdiff_plain;h=035739fb623e40dc5ed0df7fc8d26bbd22ff3d20;p=lemmy-ui.git Increase fetch limit for user and community searches. Fixes #756 (#773) --- diff --git a/src/shared/utils.ts b/src/shared/utils.ts index 19b48c1..9257a4e 100644 --- a/src/shared/utils.ts +++ b/src/shared/utils.ts @@ -69,7 +69,7 @@ export const webArchiveUrl = "https://web.archive.org"; export const elementUrl = "https://element.io"; export const postRefetchSeconds: number = 60 * 1000; -export const fetchLimit = 20; +export const fetchLimit = 40; export const trendingFetchLimit = 6; export const mentionDropdownFetchLimit = 10; export const commentTreeMaxDepth = 8;