Disabled no-console for where we currently log an error. (#2502)
This commit is contained in:
parent
810352766d
commit
1ca5177044
1 changed files with 3 additions and 1 deletions
|
|
@ -20,6 +20,8 @@ export default function sendFollowUser(user, successCb) {
|
|||
// json is followed or unfollowed
|
||||
})
|
||||
.catch(error => {
|
||||
console.log(error);
|
||||
// TODO: Add client-side error tracking. See https://github.com/thepracticaldev/dev.to/issues/2501
|
||||
// for the discussion.
|
||||
console.log(error); // eslint-disable-line no-console
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue