Remove superfluous 'error' string in console.error

This commit is contained in:
John Furrow
2015-11-08 21:33:42 -08:00
parent 5f9d2a9889
commit cf11f386d8
@@ -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);
});
}
}