This repository was archived by the owner on Jun 24, 2025. It is now read-only.

Description
In the "Autobind Action Creators" part of the readme I see:
const services = bindWithDispatch(store.dispatch, rawServices)
The signature of the redux binder is bindActionCreators(actionCreators, dispatch), so I propose to respect the order of the arguments of the redux doc, ie:
const services = bindWithDispatch(rawServices, store.dispatch)