I've done two React/Redux projects to date, the first using our own middleware and the most recent using redux-thunk
. In the first we used "regular" action objects for our async actions, which our middleware interpreted. In that case, our actions understandably appeared in the action list in the react native debugger.
In the most recent project, however, I noticed that our thunks did not appear as actions in the debugger, which prompted the following questions:
1) Is this normal? 2) If so, do people find this not to be an issue? 3) Do the other async action libraries have the same problem?