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); }); } }