File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
packages/editor/src/components Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -131,7 +131,6 @@ export default function EditorInterface( {
131
131
customSaveButton = { customSaveButton }
132
132
forceDisableBlockTools = { forceDisableBlockTools }
133
133
title = { title }
134
- isEditorIframed = { ! disableIframe }
135
134
/>
136
135
)
137
136
}
Original file line number Diff line number Diff line change @@ -53,7 +53,6 @@ function Header( {
53
53
forceDisableBlockTools,
54
54
setEntitiesSavedStatesCallback,
55
55
title,
56
- isEditorIframed,
57
56
} ) {
58
57
const isWideViewport = useViewportMatch ( 'large' ) ;
59
58
const isLargeViewport = useViewportMatch ( 'medium' ) ;
@@ -168,7 +167,7 @@ function Header( {
168
167
forceIsAutosaveable = { forceIsDirty }
169
168
/>
170
169
171
- { canBeZoomedOut && isEditorIframed && isWideViewport && (
170
+ { canBeZoomedOut && isWideViewport && (
172
171
< ZoomOutToggle disabled = { forceDisableBlockTools } />
173
172
) }
174
173
You can’t perform that action at this time.
0 commit comments