You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/Troubleshooting.md
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3,3 +3,13 @@
3
3
### I just see empty log or "No store found"
4
4
5
5
Make sure you [applied the enhancer](https://github.com/zalmoxisus/redux-devtools-extension#2-use-with-redux). Note that passing enhancer as last argument requires redux@>=3.1.0. For older versions apply it like [here](https://github.com/zalmoxisus/redux-devtools-extension/blob/v0.4.2/examples/todomvc/store/configureStore.js) or [here](https://github.com/zalmoxisus/redux-devtools-extension/blob/v0.4.2/examples/counter/store/configureStore.js#L7-L12).
6
+
7
+
### Extension ignores Redux Saga or other store enhancers which change the store object
8
+
9
+
Update the store after creating / changing:
10
+
11
+
```js
12
+
if (window.devToolsExtension) window.devToolsExtension.updateStore(store)
13
+
```
14
+
15
+
See [the example for Redux Saga](https://github.com/zalmoxisus/redux-devtools-extension/blob/0757dac4c2eb217d7bbb8be738d8bae32ec21d86/examples/saga-counter/src/main.js#L25).
0 commit comments