From eda0c46f29795eefb782423bcc488339dc39d708 Mon Sep 17 00:00:00 2001 From: tonyrewin Date: Sat, 22 Oct 2022 17:20:40 +0300 Subject: [PATCH] fix-import --- src/components/Editor/store/actions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Editor/store/actions.ts b/src/components/Editor/store/actions.ts index f94eb35b..18c7f646 100644 --- a/src/components/Editor/store/actions.ts +++ b/src/components/Editor/store/actions.ts @@ -4,7 +4,7 @@ import type { EditorState } from 'prosemirror-state' import { undo, redo } from 'prosemirror-history' import { selectAll, deleteSelection } from 'prosemirror-commands' import { undo as yUndo, redo as yRedo } from 'y-prosemirror' -import { debounce } from 'lodash' +import debounce from 'lodash/debounce' import { createSchema, createExtensions, createEmptyText } from '../prosemirror/setup' import { State, Draft, Config, ServiceError, newState, ExtensionsProps } from './context' import { mod } from '../env'