diff --git a/packages/pl-fe/src/hooks/use-long-press.ts b/packages/pl-fe/src/hooks/use-long-press.ts index dad95491a..41c67f943 100644 --- a/packages/pl-fe/src/hooks/use-long-press.ts +++ b/packages/pl-fe/src/hooks/use-long-press.ts @@ -44,7 +44,7 @@ type LongPressOptions = { }; const useLongPress = (callback: (e: Event) => void, options: LongPressOptions = {}) => { - const { threshold = 400, onStart, onFinish, onCancel, allowScroll = false, scrollThreshold = 20 } = options; + const { threshold = 400, onStart, onFinish, onCancel, allowScroll = false, scrollThreshold = 40 } = options; const isLongPressActive = React.useRef(false); const isPressed = React.useRef(false); const timerId = React.useRef();