yarn reactotron-redux 3.1.2
v3.1.2

latest releases: 3.1.9, 3.1.8, 3.1.7...
4 years ago

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)

Don't miss a new reactotron-redux release

NewReleases is sending notifications on new releases.