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
For some actions, we know they are not intended to be used in namespaced contexts. In those cases, adding dispatchAction around each call of the action creator is just added cruft and noise.
We should consider creating a utility bindAction(actionCreator, action$), that can do this binding when the action is created (or in each file it's used?), by returning a wrapped action creator that actually dispatches the action as it is created.
The text was updated successfully, but these errors were encountered:
For some actions, we know they are not intended to be used in namespaced contexts. In those cases, adding
dispatchAction
around each call of the action creator is just added cruft and noise.We should consider creating a utility
bindAction(actionCreator, action$)
, that can do this binding when the action is created (or in each file it's used?), by returning a wrapped action creator that actually dispatches the action as it is created.The text was updated successfully, but these errors were encountered: