mirror of
https://github.com/zoriya/flood.git
synced 2026-06-07 20:30:42 +00:00
Remove superfluous 'error' string in console.error
This commit is contained in:
@@ -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);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user