From e0372afc5da31f162b3c967a234b0d2c7a55cc91 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 12 Jun 2024 14:01:25 -0500 Subject: [PATCH] Lower limit --- src/view/screens/Search/Search.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/view/screens/Search/Search.tsx b/src/view/screens/Search/Search.tsx index 4c434fea21..3fd7440de2 100644 --- a/src/view/screens/Search/Search.tsx +++ b/src/view/screens/Search/Search.tsx @@ -223,7 +223,7 @@ function ExploreScreen() { isFetchingNextPage: isFetchingNextProfilesPage, error: profilesError, fetchNextPage: fetchNextProfilesPage, - } = useSuggestedFollowsQuery({limit: 5}) + } = useSuggestedFollowsQuery({limit: 4}) const { data: feeds, hasNextPage: hasNextFeedsPage, @@ -231,7 +231,7 @@ function ExploreScreen() { isFetchingNextPage: isFetchingNextFeedsPage, error: feedsError, fetchNextPage: fetchNextFeedsPage, - } = useGetPopularFeedsQuery({limit: 5}) + } = useGetPopularFeedsQuery({limit: 4}) const isLoadingMoreProfiles = isFetchingNextProfilesPage && !isLoadingProfiles const onLoadMoreProfiles = React.useCallback(async () => { @@ -437,7 +437,7 @@ function ExploreScreen() { } case 'loadMore': { return ( - +