Sometime back Dan tweeted
"I cringe when I see
`.then(() => dispatch(...)).catch(...)`
in React projects. If a component throws during dispatch, you’ll get into catch."
And says the solution is so simple. Just don’t chain catch() after then() that renders UI. Instead pass error handler as second arg to then().
Can someone explain why this is the case.
In my case I am making an ajax call, so I assume I will get inside then for anything that is 200 as a server response and inside catch for anything that is not 200, i.e. error from server. Am I missing something here?