summaryrefslogtreecommitdiffstats
path: root/app/assets/javascripts/components/actions/suggestions.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/components/actions/suggestions.jsx')
-rw-r--r--app/assets/javascripts/components/actions/suggestions.jsx1
1 files changed, 0 insertions, 1 deletions
diff --git a/app/assets/javascripts/components/actions/suggestions.jsx b/app/assets/javascripts/components/actions/suggestions.jsx
index 103502a2f27..c70a4d121e4 100644
--- a/app/assets/javascripts/components/actions/suggestions.jsx
+++ b/app/assets/javascripts/components/actions/suggestions.jsx
@@ -11,7 +11,6 @@ export function fetchSuggestions() {
api(getState).get('/api/v1/accounts/suggestions').then(response => {
dispatch(fetchSuggestionsSuccess(response.data));
}).catch(error => {
- console.error(error);
dispatch(fetchSuggestionsFail(error));
});
};