mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-02 21:14:47 +00:00
[Glitch] Change follow recommendations to be limited to 20 instead of 40 in web UI
Port 7762d3d275
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
parent
0936ae4132
commit
2f2c77c747
|
@ -12,7 +12,7 @@ export function fetchSuggestions(withRelationships = false) {
|
||||||
return (dispatch, getState) => {
|
return (dispatch, getState) => {
|
||||||
dispatch(fetchSuggestionsRequest());
|
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(importFetchedAccounts(response.data.map(x => x.account)));
|
||||||
dispatch(fetchSuggestionsSuccess(response.data));
|
dispatch(fetchSuggestionsSuccess(response.data));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue