Change follow recommendations to be limited to 20 instead of 40 in web UI (#16077)
This commit is contained in:
		@@ -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));
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user