Disabled no-console for where we currently log an error. (#2502)

This commit is contained in:
Nick Taylor 2019-04-20 09:20:09 -04:00 committed by Ben Halpern
parent 810352766d
commit 1ca5177044

View file

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