diff --git a/packages/edit-post/src/components/block-manager/index.js b/packages/edit-post/src/components/block-manager/index.js
index 9daddf3eae7808..8dc3aea8ec91dc 100644
--- a/packages/edit-post/src/components/block-manager/index.js
+++ b/packages/edit-post/src/components/block-manager/index.js
@@ -8,9 +8,10 @@ import { filter, includes, isArray } from 'lodash';
*/
import { store as blocksStore } from '@wordpress/blocks';
import { withSelect } from '@wordpress/data';
-import { TextControl } from '@wordpress/components';
+import { VisuallyHidden, TextControl } from '@wordpress/components';
import { __, _n, sprintf } from '@wordpress/i18n';
import { useState } from '@wordpress/element';
+import { useInstanceId } from '@wordpress/compose';
/**
* Internal dependencies
@@ -26,6 +27,7 @@ function BlockManager( {
numberOfHiddenBlocks,
} ) {
const [ search, setSearch ] = useState( '' );
+ const instanceId = useInstanceId( BlockManager );
// Filtering occurs here (as opposed to `withSelect`) to avoid
// wasted renders by consequence of `Array#filter` producing
@@ -53,9 +55,16 @@ function BlockManager( {
) }
) }
+
+ { __( 'Search for a block' ) }
+
setSearch( nextSearch ) }
className="edit-post-block-manager__search"
diff --git a/packages/edit-post/src/components/preferences-modal/index.js b/packages/edit-post/src/components/preferences-modal/index.js
index 5b79d6f2cec743..eec907a073ed62 100644
--- a/packages/edit-post/src/components/preferences-modal/index.js
+++ b/packages/edit-post/src/components/preferences-modal/index.js
@@ -172,8 +172,9 @@ export default function PreferencesModal() {
/>
diff --git a/packages/edit-post/src/components/preferences-modal/test/__snapshots__/index.js.snap b/packages/edit-post/src/components/preferences-modal/test/__snapshots__/index.js.snap
index ccf0feb5585742..93b38fe63759ae 100644
--- a/packages/edit-post/src/components/preferences-modal/test/__snapshots__/index.js.snap
+++ b/packages/edit-post/src/components/preferences-modal/test/__snapshots__/index.js.snap
@@ -145,7 +145,8 @@ exports[`PreferencesModal should match snapshot when the modal is active small v
/>