We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 65faa0a + 71c0de5 commit 8fc0a06Copy full SHA for 8fc0a06
README.md
@@ -48,7 +48,9 @@ And then use `Raven.captureException` as the error handler like this:
48
49
```javascript
50
const store = createStore(reducer, applyMiddleware(
51
- reduxCatch(Raven.captureException)
+ reduxCatch(function (error) {
52
+ Raven.captureException(error);
53
+ });
54
));
55
```
56
0 commit comments