From 2e64bfc5ca1b08c6636d121b77e2d1e733654d66 Mon Sep 17 00:00:00 2001 From: Ivaylo Pavlov Date: Sun, 13 Oct 2024 02:26:49 +0100 Subject: [PATCH] [lexical-playground] Remove unused command (#6726) --- .../lexical-playground/src/plugins/CollapsiblePlugin/index.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/lexical-playground/src/plugins/CollapsiblePlugin/index.ts b/packages/lexical-playground/src/plugins/CollapsiblePlugin/index.ts index 346053dc6ca..ebed3126590 100644 --- a/packages/lexical-playground/src/plugins/CollapsiblePlugin/index.ts +++ b/packages/lexical-playground/src/plugins/CollapsiblePlugin/index.ts @@ -28,7 +28,6 @@ import { KEY_ARROW_RIGHT_COMMAND, KEY_ARROW_UP_COMMAND, LexicalNode, - NodeKey, } from 'lexical'; import {useEffect} from 'react'; @@ -49,7 +48,6 @@ import { } from './CollapsibleTitleNode'; export const INSERT_COLLAPSIBLE_COMMAND = createCommand(); -export const TOGGLE_COLLAPSIBLE_COMMAND = createCommand(); export default function CollapsiblePlugin(): null { const [editor] = useLexicalComposerContext();