diff options
author | Paul Frazee <pfrazee@gmail.com> | 2025-04-08 16:16:13 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-08 18:16:13 -0500 |
commit | a59fb91a991f2663778b6c17501b04ca3c9e2e26 (patch) | |
tree | 5625b515bc584ea06ceff635ae3b1fbe539f95bb /src/components/ProgressGuide/FollowDialog.tsx | |
parent | c8568e3004831e76b29e0f710805cb4f1cfc7576 (diff) | |
download | voidsky-a59fb91a991f2663778b6c17501b04ca3c9e2e26.tar.zst |
Increase suggested follows in the new user progress guide modal (#8162)
* Increase number of accounts suggested in the follow dialog progress guide * Increase the bottom pad on the dialog flatlist component * Format --------- Co-authored-by: Eric Bailey <git@esb.lol>
Diffstat (limited to 'src/components/ProgressGuide/FollowDialog.tsx')
-rw-r--r-- | src/components/ProgressGuide/FollowDialog.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/components/ProgressGuide/FollowDialog.tsx b/src/components/ProgressGuide/FollowDialog.tsx index 0d9a962a3..a8c64935a 100644 --- a/src/components/ProgressGuide/FollowDialog.tsx +++ b/src/components/ProgressGuide/FollowDialog.tsx @@ -132,6 +132,7 @@ function DialogInner({guide}: {guide: Follow10ProgressGuide}) { error: suggestionsError, } = useGetSuggestedUsersQuery({ category: selectedInterest, + limit: 50, }) const { data: searchResults, |