From e32c6c64739dd27ef03b6ef72a06eb74cec63dbe Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Wed, 28 Dec 2022 20:35:49 +0800 Subject: [PATCH] Revert "Delay onClose after swipe" This reverts commit 0feee7ea9329b4636e75432b08118ea0ec0f5168. --- src/components/status.jsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/components/status.jsx b/src/components/status.jsx index 05a156cd..b9ed83b4 100644 --- a/src/components/status.jsx +++ b/src/components/status.jsx @@ -1272,9 +1272,8 @@ function Carousel({ mediaAttachments, index = 0, onClose = () => {} }) { const [showControls, setShowControls] = useState(false); useEffect(() => { - let swipeTimeout; let handleSwipe = () => { - swipeTimeout = setTimeout(onClose, 500); + onClose(); }; if (carouselRef.current) { carouselRef.current.addEventListener('swiped-down', handleSwipe); @@ -1283,7 +1282,6 @@ function Carousel({ mediaAttachments, index = 0, onClose = () => {} }) { if (carouselRef.current) { carouselRef.current.removeEventListener('swiped-down', handleSwipe); } - clearTimeout(swipeTimeout); }; }, []);