Hello
We're getting this [Intervention] Ignored attempt to cancel a touchmove event with cancelable=false' error on the console, which happens when a non-cancelable event is being cancelled with preventDefault()
This line looks suspicious:
Would that be ok if I sent an PR which would check for cancelability before preventDefault ? something like this:
const preventScrolling = e => {
if (preventScrollingRef.current && e.cancelable) {
e.preventDefault()
}
}
Hello
We're getting this
[Intervention] Ignored attempt to cancel a touchmove event with cancelable=false'error on the console, which happens when a non-cancelable event is being cancelled with preventDefault()This line looks suspicious:
react-spring-bottom-sheet/src/BottomSheet.tsx
Line 455 in 3cb57d1
Would that be ok if I sent an PR which would check for cancelability before preventDefault ? something like this: