diff --git a/editor/store/reducer.js b/editor/store/reducer.js index c3ad11076d10f5..6efd5042fcd196 100644 --- a/editor/store/reducer.js +++ b/editor/store/reducer.js @@ -578,6 +578,8 @@ export function preferences( state = PREFERENCES_DEFAULTS, action ) { [ action.feature ]: ! state.features[ action.feature ], }, }; + case 'REDUX_SERIALIZE': + return omit( state, [ 'sidebars.mobile', 'sidebars.publish' ] ); } return state;