Skip to content

Commit

Permalink
address some nits
Browse files Browse the repository at this point in the history
  • Loading branch information
draganescu committed Oct 7, 2024
1 parent 33cf070 commit b8ca907
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions packages/block-editor/src/components/block-popover/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,16 +86,15 @@ function BlockPopover(
const {
isZoomOut: isZoomOutSelector,
getSectionRootClientId,
getParentSectionBlock: getParentSectionBlockFn,
getBlockOrder: getBlockOrderFn,
getParentSectionBlock: getParentSectionBlockSelector,
getBlockOrder: getBlockOrderSelector,
} = unlock( select( blockEditorStore ) );

const root = getSectionRootClientId();
return {
sectionRootClientId: root,
sectionRootClientId: getSectionRootClientId(),
isZoomOut: isZoomOutSelector(),
getParentSectionBlock: getParentSectionBlockFn,
getBlockOrder: getBlockOrderFn,
getParentSectionBlock: getParentSectionBlockSelector,
getBlockOrder: getBlockOrderSelector,
};
}, [] );

Expand Down

0 comments on commit b8ca907

Please sign in to comment.