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/follow.jsx | 1 - 1 file changed, 1 deletion(-) (limited to 'app/assets/javascripts/components/actions/follow.jsx') diff --git a/app/assets/javascripts/components/actions/follow.jsx b/app/assets/javascripts/components/actions/follow.jsx index 74981cd17..8eb440789 100644 --- a/app/assets/javascripts/components/actions/follow.jsx +++ b/app/assets/javascripts/components/actions/follow.jsx @@ -22,7 +22,6 @@ export function submitFollow(router) { dispatch(submitFollowSuccess(response.data)); router.push(`/accounts/${response.data.id}`); }).catch(function (error) { - console.error(error); dispatch(submitFollowFail(error)); }); }; -- cgit