diff --git a/packages/block-editor/src/store/selectors.js b/packages/block-editor/src/store/selectors.js index 8220e418a79f2..244fce9b62a4c 100644 --- a/packages/block-editor/src/store/selectors.js +++ b/packages/block-editor/src/store/selectors.js @@ -153,7 +153,7 @@ export const getBlock = createSelector( ...block, attributes: getBlockAttributes( state, clientId ), innerBlocks: areInnerBlocksControlled( state, clientId ) - ? [] + ? EMPTY_ARRAY : getBlocks( state, clientId ), }; },