Skip to content

Commit 677c1ba

Browse files
committed
fix equal setting on android swipe
1 parent 04347c9 commit 677c1ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ImageGallery/ImageGallery.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ export const ImageGallery = <
423423
*/
424424
if (isAndroid && hasPinched.value === HasPinched.TRUE) {
425425
hasPinched.value = HasPinched.FALSE;
426-
isSwiping.value === IsSwiping.FALSE;
426+
isSwiping.value = IsSwiping.FALSE;
427427
offsetX.value = translateX.value + evt.translationX;
428428
offsetY.value = translateY.value - evt.translationY;
429429
}

0 commit comments

Comments
 (0)