From cf11f386d8d5c4b2ade6a6a460b2e4aac4260345 Mon Sep 17 00:00:00 2001 From: John Furrow Date: Sun, 8 Nov 2015 21:33:42 -0800 Subject: [PATCH] Remove superfluous 'error' string in console.error --- client/source/scripts/actions/ClientActions.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/source/scripts/actions/ClientActions.js b/client/source/scripts/actions/ClientActions.js index 0e54436e..af174cae 100644 --- a/client/source/scripts/actions/ClientActions.js +++ b/client/source/scripts/actions/ClientActions.js @@ -62,7 +62,7 @@ export function fetchTorrents() { }); }) .catch((error) => { - console.error('error', error); + console.error(error); }); } } @@ -85,7 +85,7 @@ export function startTorrent(hashes) { dispatch(fetchTorrents()); }) .catch((error) => { - console.error('error', error); + console.error(error); }); } } @@ -108,7 +108,7 @@ export function stopTorrent(hashes) { dispatch(fetchTorrents()); }) .catch((error) => { - console.error('error', error); + console.error(error); }); } }