Skip to content

Commit 08aa416

Browse files
committed
Add troubleshooting
1 parent 31d9aed commit 08aa416

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,16 @@
5050
```js
5151
{ !window.devToolsExtension ? <DevTools /> : null }
5252
```
53+
54+
Note: 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).
5355

5456
#### For React Native, hybrid, desktop and server side Redux apps
55-
Include [`Remote Redux DevTools`](https://github.com/zalmoxisus/remote-redux-devtools), and on the extension's context choose 'Open Remote DevTools' or press Alt+Shift+arrow up for remote monitoring.
57+
Include [`Remote Redux DevTools`](https://github.com/zalmoxisus/remote-redux-devtools), and from the extension's context menu choose 'Open Remote DevTools' or press Alt+Shift+arrow up for remote monitoring.
5658

5759
## Documentation
5860

5961
- [FAQ](docs/FAQ.md)
60-
- API
62+
- API Reference
6163
- [Apply as a Redux store enhancer](docs/API/Arguments.md#windowdevtoolsextensionconfig)
6264
- [Create Redux store right in the extension](docs/API/Arguments.md#windowdevtoolsextensionreducer-preloadedstate-config)
6365
- [Communicate with the extension directly](docs/API/Methods.md)
@@ -66,6 +68,7 @@
6668
- [send](docs/API/Methods.md#windowdevtoolsextensionlistenonmessage-instanceid)
6769
- [connect](docs/API/Methods.md#windowdevtoolsextensionconnectconfig)
6870
- [disconnect](docs/API/Methods.md#windowdevtoolsextensiondisconnect)
71+
- [Troubleshooting](docs/Troubleshooting.md)
6972

7073
##📺 Videos
7174

docs/Troubleshooting.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Troubleshooting
2+
3+
### I just see empty log or "No store found"
4+
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).

0 commit comments

Comments
 (0)