From e2f4c023c177c5c9da4f2b9f9fa2b384f3e4f3b1 Mon Sep 17 00:00:00 2001 From: corgifist Date: Sun, 3 Aug 2025 00:54:25 +0300 Subject: [PATCH] fixed project library dropdown --- src/components/swipe-to-delete/SwipeToDelete.tsx | 3 --- 1 file changed, 3 deletions(-) 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'