react-context-devtool
react-context-devtool copied to clipboard
The first time a reducer is invoked only one action will be tracked, even if you dispatch multiple actions.
trafficstars
Dispatching multiple actions will only result in the first action being tracked in the chrome extension. Afterwads all dispatched actions will be tracked correctly.
Notice how the onclick dispatches two actions one after another.

Only one action appears in the extension after clicking the button the first time.

The second time i click the button, there will be 3 actions.

Expected behavior There should be two actions for every time i click the button.