diff --git a/_inc/client/state/redux-store.js b/_inc/client/state/redux-store.js index a9b7af8faf351..5828eee249a58 100644 --- a/_inc/client/state/redux-store.js +++ b/_inc/client/state/redux-store.js @@ -19,7 +19,7 @@ function createJetpackStore() { const finalCreateStore = compose( applyMiddleware( thunk ), applyMiddleware( history ), - typeof window === 'object' && typeof window.devToolsExtension !== 'undefined' ? window.devToolsExtension() : f => f + typeof window === 'object' && typeof window.__REDUX_DEVTOOLS_EXTENSION__ !== 'undefined' ? window.__REDUX_DEVTOOLS_EXTENSION__() : f => f )( createStore ); return finalCreateStore( reducer ); }