about summary refs log tree commit diff
path: root/app/javascript/mastodon/actions
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2021-04-21 13:52:03 +0200
committerClaire <claire.github-309c@sitedethib.com>2021-04-21 13:52:03 +0200
commit536892b8ae7788525e9d65481df693afe6a8bfc4 (patch)
tree601261c5ef16225420743f32ae2ec4ce40ceb098 /app/javascript/mastodon/actions
parentb1d4f21db0d413c887978ff69aa46b3bc8ea1f3d (diff)
parent0b36e3419d4c4ce175f9db266ef5b3a49a9b3974 (diff)
Merge branch 'main' into glitch-soc/merge-upstream
Diffstat (limited to 'app/javascript/mastodon/actions')
-rw-r--r--app/javascript/mastodon/actions/suggestions.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/mastodon/actions/suggestions.js b/app/javascript/mastodon/actions/suggestions.js
index e3a549759..1f1116e75 100644
--- a/app/javascript/mastodon/actions/suggestions.js
+++ b/app/javascript/mastodon/actions/suggestions.js
@@ -12,7 +12,7 @@ export function fetchSuggestions(withRelationships = false) {
   return (dispatch, getState) => {
     dispatch(fetchSuggestionsRequest());
 
-    api(getState).get('/api/v2/suggestions').then(response => {
+    api(getState).get('/api/v2/suggestions', { params: { limit: 20 } }).then(response => {
       dispatch(importFetchedAccounts(response.data.map(x => x.account)));
       dispatch(fetchSuggestionsSuccess(response.data));