diff --git a/core/src/utils/gesture/swipe-back.ts b/core/src/utils/gesture/swipe-back.ts index 043be85537..5c7a96afd6 100644 --- a/core/src/utils/gesture/swipe-back.ts +++ b/core/src/utils/gesture/swipe-back.ts @@ -34,7 +34,7 @@ export const createSwipeBackGesture = ( let realDur = 0; if (missingDistance > 5) { const dur = missingDistance / Math.abs(velocity); - realDur = Math.min(dur, 300); + realDur = Math.min(dur, 540); } onEndHandler(shouldComplete, stepValue, realDur);