Skip to content

Tag: redux-thunk

Cannot call Action within another Action

I am having trouble understanding this behaviour I have an action defined like this and whatever() is defined like this I expect whatever() to be executed, but it is not. Why is that? Answer Both onDone and whatever here are not “actions”, they are “action creators”. They are functions…