How handle Fetch failures in Redux's action creators – Facebook api
Redux docs suggest to have 3 different actions per AJAX request. For example for Login they would be: LOGIN_REUQEST LOGIN_FAILURE LOGIN_SUCCESS But I have problem with catching all errors that can be thrown by fetch. In redux docs I found…