diff --git a/src/components/swipe-to-delete/SwipeToDelete.tsx b/src/components/swipe-to-delete/SwipeToDelete.tsx index 892584b..a605c5a 100644 --- a/src/components/swipe-to-delete/SwipeToDelete.tsx +++ b/src/components/swipe-to-delete/SwipeToDelete.tsx @@ -38,7 +38,6 @@ const SwipeToDelete: FC = ({ const lastXRef = useRef(0); const lastYRef = useRef(0); - // measure width and thresholds const width = container.current?.offsetWidth ?? window.innerWidth; const rubberMax = width * threshold / 100; @@ -250,8 +249,6 @@ const SwipeToDelete: FC = ({ transition: dragging ? '' : 'transform 300ms cubic-bezier(0.24, 1.04, 0.56, 1)', - touchAction: 'none', - pointerEvents: 'none', willChange: 'transform', backfaceVisibility: 'hidden', transformStyle: 'preserve-3d'