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
I'm not clear on the purpose of this error, and how I should be catching it to prevent it. It's happening on some reset() calls but not all. I see abort() gets called when the reset action is dispatched but I'm not clear on why it only happens on some resets.
Thanks!
The text was updated successfully, but these errors were encountered:
@lexich Why is that an error? Shouldn't it just kill the request silently? Maybe I'm not understanding what the reset action is supposed to do, but I'm expecting it to clear the state whether there's a call in flight or not.
When you make request you get promise which returns promise. Promise can be resolved or rejected. Abort make promise rejected because you by default you await receiving data when you have resolved state.
I'm not clear on the purpose of this error, and how I should be catching it to prevent it. It's happening on some
reset()
calls but not all. I seeabort()
gets called when the reset action is dispatched but I'm not clear on why it only happens on some resets.Thanks!
The text was updated successfully, but these errors were encountered: