a tool for shared writing and social publishing

removed prevent default on touch move causing doc not to scroll when draggable blocks are added

-1
-1
src/hooks/useDrag.ts
··· 76 window.addEventListener( 77 "touchmove", 78 (e) => { 79 - e.preventDefault(); 80 if (args.delay && touchStart.current) { 81 const deltaX = e.touches[0].clientX - touchStart.current.x; 82 const deltaY = e.touches[0].clientY - touchStart.current.y;
··· 76 window.addEventListener( 77 "touchmove", 78 (e) => { 79 if (args.delay && touchStart.current) { 80 const deltaX = e.touches[0].clientX - touchStart.current.x; 81 const deltaY = e.touches[0].clientY - touchStart.current.y;