diff --git a/packages/app/src/components/editor.tsx b/packages/app/src/components/editor.tsx index d1aa9f639b..d33c7007d3 100644 --- a/packages/app/src/components/editor.tsx +++ b/packages/app/src/components/editor.tsx @@ -1,5 +1,5 @@ import React, { useEffect, useRef } from 'react'; -import { useEditor, initDefaultContent } from '@/providers/editor-provider'; +import { useEditor } from '@/providers/editor-provider'; export const Editor = () => { const editorContainer = useRef(null); @@ -11,8 +11,6 @@ export const Editor = () => { ref.current = editor; editorContainer.current?.appendChild(editor); - - // initDefaultContent(editor); } }, [editor]);