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/statuses.jsx | 2 -- 1 file changed, 2 deletions(-) (limited to 'app/assets/javascripts/components/actions/statuses.jsx') diff --git a/app/assets/javascripts/components/actions/statuses.jsx b/app/assets/javascripts/components/actions/statuses.jsx index f7b7b9f73..2fb2d1ba1 100644 --- a/app/assets/javascripts/components/actions/statuses.jsx +++ b/app/assets/javascripts/components/actions/statuses.jsx @@ -25,7 +25,6 @@ export function fetchStatus(id) { axios.all([boundApi.get(`/api/v1/statuses/${id}`), boundApi.get(`/api/v1/statuses/${id}/context`)]).then(values => { dispatch(fetchStatusSuccess(values[0].data, values[1].data)); }).catch(error => { - console.error(error); dispatch(fetchStatusFail(id, error)); }); }; @@ -54,7 +53,6 @@ export function deleteStatus(id) { api(getState).delete(`/api/v1/statuses/${id}`).then(response => { dispatch(deleteStatusSuccess(id)); }).catch(error => { - console.error(error); dispatch(deleteStatusFail(id, error)); }); }; -- cgit