diff --git a/core/src/utils/input-shims/hacks/scroll-assist.ts b/core/src/utils/input-shims/hacks/scroll-assist.ts index f7239bce08..5e404341b9 100644 --- a/core/src/utils/input-shims/hacks/scroll-assist.ts +++ b/core/src/utils/input-shims/hacks/scroll-assist.ts @@ -27,8 +27,6 @@ export const enableScrollAssist = ( // focus this input if the pointer hasn't moved XX pixels // and the input doesn't already have focus if (!hasPointerMoved(6, coord, endCoord) && !isFocused(inputEl)) { - ev.stopPropagation(); - // begin the input focus process jsSetFocus(componentEl, inputEl, contentEl, footerEl, keyboardHeight); }