You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The devTools extension seems to be modifying the arguments that's sent to my app's middleware. If I remove the extension the middleware works as expected.
Devtools logs the actions fine:
and then the middlewares fail to receive the correct arguments: store is undefined, next is correct, and the original action is always wrapped in a PERFORM_ACTION:
The devTools extension seems to be modifying the arguments that's sent to my app's middleware. If I remove the extension the middleware works as expected.
Devtools logs the actions fine:
and then the middlewares fail to receive the correct arguments:
store
is undefined,next
is correct, and the originalaction
is always wrapped in aPERFORM_ACTION
:Below is the ngRedux setup:
where
customMiddleware
just logs:I'm not sure if this is an ngRedux's setup is not what DevTools is expecting?
versions:
[email protected]
[email protected]
The text was updated successfully, but these errors were encountered: