Timothy Jaeryang Baek 3 months ago
parent
commit
31c63d8898
1 changed files with 1 additions and 3 deletions
  1. 1 3
      src/lib/components/common/RichTextInput.svelte

+ 1 - 3
src/lib/components/common/RichTextInput.svelte

@@ -192,9 +192,7 @@
 			view.dispatch(tr);
 		} else if (text === '') {
 			// Empty: replace with empty paragraph using tr
-			const emptyParagraph = schema.nodes.paragraph.create();
-			tr.replaceSelectionWith(emptyParagraph, false);
-			view.dispatch(tr);
+			editor.commands.clearContent();
 		} else {
 			// Single line: create paragraph with text
 			const paragraph = schema.nodes.paragraph.create({}, schema.text(text));