zalmoxisus / remote-redux-devtools

Redux DevTools remotely.
http://zalmoxisus.github.io/monitoring/
MIT License
1.8k stars 138 forks source link

redux-sagas not working #100

Open chrisbull opened 6 years ago

chrisbull commented 6 years ago

remote-redux-devtools not working had to use redux-devtools-extension instead.

I'm using redux, redux-persist, redux-saga, and ApolloClient (GraphQL)

my code:

  import { composeWithDevTools } from 'remote-redux-devtools'
  ...
  const store = createAppropriateStore(
    rootReducer,
    composeWithDevTools(...enhancers),
  )