From 597cc08f293764789eaf3d46cbb87ea1fc9f344b Mon Sep 17 00:00:00 2001 From: George Mamadashvili Date: Sun, 18 Feb 2024 17:01:38 +0400 Subject: [PATCH] Editor: Fix 'useHideBlocksFromInserter' hook filename --- packages/editor/src/components/provider/index.js | 2 +- ...-bocks-from-inserter.js => use-hide-blocks-from-inserter.js} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename packages/editor/src/components/provider/{use-hide-bocks-from-inserter.js => use-hide-blocks-from-inserter.js} (100%) diff --git a/packages/editor/src/components/provider/index.js b/packages/editor/src/components/provider/index.js index 323b231b562195..9802d5f335e637 100644 --- a/packages/editor/src/components/provider/index.js +++ b/packages/editor/src/components/provider/index.js @@ -23,7 +23,7 @@ import useBlockEditorSettings from './use-block-editor-settings'; import { unlock } from '../../lock-unlock'; import DisableNonPageContentBlocks from './disable-non-page-content-blocks'; import NavigationBlockEditingMode from './navigation-block-editing-mode'; -import { useHideBlocksFromInserter } from './use-hide-bocks-from-inserter'; +import { useHideBlocksFromInserter } from './use-hide-blocks-from-inserter'; import useCommands from '../commands'; const { ExperimentalBlockEditorProvider } = unlock( blockEditorPrivateApis ); diff --git a/packages/editor/src/components/provider/use-hide-bocks-from-inserter.js b/packages/editor/src/components/provider/use-hide-blocks-from-inserter.js similarity index 100% rename from packages/editor/src/components/provider/use-hide-bocks-from-inserter.js rename to packages/editor/src/components/provider/use-hide-blocks-from-inserter.js