diff --git a/libs/components/editor-blocks/src/blocks/text/TextView.tsx b/libs/components/editor-blocks/src/blocks/text/TextView.tsx index baae481c91..094d05f755 100644 --- a/libs/components/editor-blocks/src/blocks/text/TextView.tsx +++ b/libs/components/editor-blocks/src/blocks/text/TextView.tsx @@ -90,7 +90,9 @@ export const TextView = ({ await block.removeChildren(); await block.after(nextBlock); - editor.selectionManager.activeNodeByNodeId(nextBlock.id); + setTimeout(() => { + editor.selectionManager.activeNodeByNodeId(nextBlock.id, 'start'); + }); return true; };