File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,6 @@ export function BlockSettingsDropdown( {
6565 selectedBlockClientIds,
6666 openedBlockSettingsMenu,
6767 isContentOnly,
68- isZoomOut,
6968 } = useSelect (
7069 ( select ) => {
7170 const {
@@ -76,7 +75,6 @@ export function BlockSettingsDropdown( {
7675 getBlockAttributes,
7776 getOpenedBlockSettingsMenu,
7877 getBlockEditingMode,
79- isZoomOut : _isZoomOut ,
8078 } = unlock ( select ( blockEditorStore ) ) ;
8179
8280 const { getActiveBlockVariation } = select ( blocksStore ) ;
@@ -101,7 +99,6 @@ export function BlockSettingsDropdown( {
10199 openedBlockSettingsMenu : getOpenedBlockSettingsMenu ( ) ,
102100 isContentOnly :
103101 getBlockEditingMode ( firstBlockClientId ) === 'contentOnly' ,
104- isZoomOut : _isZoomOut ( ) ,
105102 } ;
106103 } ,
107104 [ firstBlockClientId ]
@@ -314,7 +311,7 @@ export function BlockSettingsDropdown( {
314311 </ MenuItem >
315312 </ MenuGroup >
316313 ) }
317- { ! isContentOnly && ! isZoomOut && (
314+ { ! isContentOnly && (
318315 < BlockSettingsMenuControls . Slot
319316 fillProps = { {
320317 onClose,
You can’t perform that action at this time.
0 commit comments