File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed
Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1+ # 0.3.2
2+
3+ * Exports ` devToolsStateSanitizer ` to better display state in redux dev-tools.
4+ Thanks @sanfilippopablo
5+ * Use new, non-depreciated devtools extension hook. Thanks @zalmoxisus
6+
17# 0.3.1
28
39* Adds dispatcher option ` signAsync ` . This allows flexible signing or other
Original file line number Diff line number Diff line change @@ -11,7 +11,8 @@ const devToolsConfig = {
1111
1212const enhancer = compose (
1313 applyMiddleware ( scuttlebutt ) ,
14- window . devToolsExtension ? window . devToolsExtension ( devToolsConfig ) : f => f ,
14+ window . __REDUX_DEVTOOLS_EXTENSION__ ?
15+ window . __REDUX_DEVTOOLS_EXTENSION__ ( devToolsConfig ) : f => f ,
1516)
1617
1718const store = createStore ( counter , undefined , enhancer )
Original file line number Diff line number Diff line change @@ -12,7 +12,8 @@ const devToolsConfig = {
1212
1313const enhancer = compose (
1414 scuttlebutt ( ) ,
15- window . devToolsExtension ? window . devToolsExtension ( devToolsConfig ) : f => f ,
15+ window . __REDUX_DEVTOOLS_EXTENSION__
16+ ? window . __REDUX_DEVTOOLS_EXTENSION__ ( devToolsConfig ) : f => f
1617)
1718
1819const store = createStore ( counter , undefined , enhancer )
You can’t perform that action at this time.
0 commit comments