This repository has been archived by the owner on Dec 6, 2023. It is now read-only.
v3.1.2
infinitered-circleci
released this
19 Sep 02:46
·
9 commits
to master
since this release
3.1.2 (2019-09-19)
Bug Fixes
- Add a new API for how to register the redux store to fix an issue with dispatching from reactotron into the middleware. (bdd8702)
The idea of the API change (to be documented before full release):
Current:
const store = createStore(
rootReducer,
compose(
middleware,
Reactotron.createEnhancer()
)
)
New:
const store = createStore(
rootReducer,
compose(
middleware,
Reactotron.createEnhancer(true)
)
)
Reactotron.setReduxStore(store)