You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have many empty .then()'s all around the place. We did this to satisfy our linter but we should use .catch() with error logging instead because an empty .then() omits every error that might be thrown.
Disallow empty .then() via the linter
Replace empty .then() with .catch() and error logging
The text was updated successfully, but these errors were encountered:
Describe the chore
We have many empty
.then()
's all around the place. We did this to satisfy our linter but we should use.catch()
with error logging instead because an empty.then()
omits every error that might be thrown..then()
via the linter.then()
with.catch()
and error loggingThe text was updated successfully, but these errors were encountered: