diff --git a/packages/block-editor/src/store/private-selectors.js b/packages/block-editor/src/store/private-selectors.js index 0f8bb37687c83..752c2fe7b4c2e 100644 --- a/packages/block-editor/src/store/private-selectors.js +++ b/packages/block-editor/src/store/private-selectors.js @@ -28,6 +28,7 @@ import { unlock } from '../lock-unlock'; import { selectBlockPatternsKey, reusableBlocksSelectKey, + sectionRootClientIdKey, } from './private-keys'; export { getBlockSettings } from './get-block-settings'; @@ -545,6 +546,5 @@ export function isZoomOutMode( state ) { } export function getSectionRootClientId( state ) { - const sectionRootClientIdKey = 'sectionRootClientId'; return state.settings[ sectionRootClientIdKey ] ?? null; }