diff --git a/client/boot/index.js b/client/boot/index.js index 8239b2ec9a174..22a432d256eda 100644 --- a/client/boot/index.js +++ b/client/boot/index.js @@ -87,7 +87,7 @@ function setUpContext( layout ) { var parsed = url.parse( location.href, true ); context.layout = layout; - context.reduxStore = reduxStore; + context.store = reduxStore; // Break routing and do full page load for logout link in /me if ( context.pathname === '/wp-login.php' ) { diff --git a/client/post-editor/controller.js b/client/post-editor/controller.js index 0c5a3978f5f38..e5960cddebf15 100644 --- a/client/post-editor/controller.js +++ b/client/post-editor/controller.js @@ -38,7 +38,7 @@ function renderEditor( context, postType ) { React.unmountComponentAtNode( document.getElementById( 'secondary' ) ); React.render( - React.createElement( ReduxProvider, { store: context.reduxStore }, () => { + React.createElement( ReduxProvider, { store: context.store }, () => { return React.createElement( PreferencesData, null, React.createElement( PostEditor, { sites: sites,