diff --git a/packages/editor-mobile/src/components/editor.tsx b/packages/editor-mobile/src/components/editor.tsx index 1453b5d27..2ab80048a 100644 --- a/packages/editor-mobile/src/components/editor.tsx +++ b/packages/editor-mobile/src/components/editor.tsx @@ -239,10 +239,14 @@ const Tiptap = ({ settings }: { settings: Settings }) => { />
{ - e.preventDefault(); + onClick={(e) => { onClickBottomArea(); }} + onMouseDown={(e) => { + if (globalThis.keyboardShown) { + e.preventDefault(); + } + }} style={{ flexGrow: 1, width: "100%",