Skip to content
This repository has been archived by the owner on Dec 6, 2023. It is now read-only.

v3.1.2-beta.1

Pre-release
Pre-release
Compare
Choose a tag to compare
@infinitered-circleci infinitered-circleci released this 25 Aug 02:03
· 11 commits to master since this release

3.1.2-beta.1 (2019-08-25)

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)