From f88b8ce757f62486d5843e1ea0191db1e5c61194 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Tue, 18 Oct 2016 17:09:45 +0200 Subject: Improve how errors are displayed in the UI --- app/assets/javascripts/components/actions/suggestions.jsx | 1 - 1 file changed, 1 deletion(-) (limited to 'app/assets/javascripts/components/actions/suggestions.jsx') diff --git a/app/assets/javascripts/components/actions/suggestions.jsx b/app/assets/javascripts/components/actions/suggestions.jsx index 103502a2f..c70a4d121 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)); }); }; -- cgit