diff --git a/packages/block-editor/src/store/private-actions.js b/packages/block-editor/src/store/private-actions.js index fea2dd7306adc9..28a7b1da98f73f 100644 --- a/packages/block-editor/src/store/private-actions.js +++ b/packages/block-editor/src/store/private-actions.js @@ -392,6 +392,11 @@ export function expandBlock( clientId ) { }; } +/** + * Temporarily modify/unlock the content-only block for editions. + * + * @param {string} clientId The client id of the block. + */ export const modifyContentLockBlock = ( clientId ) => ( { select, dispatch } ) => { diff --git a/packages/editor/src/components/block-settings-menu/content-only-settings-menu.native.js b/packages/editor/src/components/block-settings-menu/content-only-settings-menu.native.js deleted file mode 100644 index b10c08c3000b02..00000000000000 --- a/packages/editor/src/components/block-settings-menu/content-only-settings-menu.native.js +++ /dev/null @@ -1,3 +0,0 @@ -export default function ContentOnlySettingsMenu() { - return null; -}