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
#339 + #345 is ensuring that we have no more floating promises. And refactors catching promise rejections to always show something to the user.
However, there's still plenty of API calls done using await getApiClient(), and many of those likely just let the error bubble up / print to console, without showing any information to the user that something went wrong.
We should go through all await getApiClient() calls and validate that when they throw, something is shown to the user for the error produced.
The text was updated successfully, but these errors were encountered:
Follow-up to #331
#339 + #345 is ensuring that we have no more floating promises. And refactors catching promise rejections to always show something to the user.
However, there's still plenty of API calls done using
await getApiClient()
, and many of those likely just let the error bubble up / print to console, without showing any information to the user that something went wrong.We should go through all
await getApiClient()
calls and validate that when they throw, something is shown to the user for the error produced.The text was updated successfully, but these errors were encountered: