It caused the #50.
The #67 is fixing it. But the touch-action: none doesn't prevent the panning somewhy.
Why don't we just prevent the touchmove instead of adding the smooth-dnd-disable-touch-action to the body?
function preventDefault(e: Event) {e.preventDefault();}
window.addEventListener('touchmove', preventDefault, { passive: false });
It caused the #50. The #67 is fixing it. But the touch-action: none doesn't prevent the panning somewhy. Why don't we just prevent the touchmove instead of adding the smooth-dnd-disable-touch-action to the body?
and after finish: