diff --git a/packages/block-editor/src/components/inserter/block-patterns-tab/pattern-category-previews.js b/packages/block-editor/src/components/inserter/block-patterns-tab/pattern-category-previews.js
index a19a579ae5c0c..c6ce9ba97d250 100644
--- a/packages/block-editor/src/components/inserter/block-patterns-tab/pattern-category-previews.js
+++ b/packages/block-editor/src/components/inserter/block-patterns-tab/pattern-category-previews.js
@@ -17,7 +17,6 @@ import {
__experimentalText as Text,
FlexBlock,
} from '@wordpress/components';
-import { useSelect } from '@wordpress/data';
/**
* Internal dependencies
@@ -34,8 +33,6 @@ import {
starterPatternsCategory,
INSERTER_PATTERN_TYPES,
} from './utils';
-import { store as blockEditorStore } from '../../../store';
-import { unlock } from '../../../lock-unlock';
const noop = () => {};
@@ -46,10 +43,6 @@ export function PatternCategoryPreviews( {
category,
showTitlesAsTooltip,
} ) {
- const isZoomOutMode = useSelect(
- ( select ) => unlock( select( blockEditorStore ) ).isZoomOut(),
- []
- );
const [ allPatterns, , onClickPattern ] = usePatternsState(
onInsert,
rootClientId,
@@ -179,15 +172,13 @@ export function PatternCategoryPreviews( {
{ currentCategoryPatterns.length > 0 && (
<>
- { isZoomOutMode && (
-
- { __( 'Drag and drop patterns into the canvas.' ) }
-
- ) }
+
+ { __( 'Drag and drop patterns into the canvas.' ) }
+