diff --git a/src/components/OnBoarding.jsx b/src/components/OnBoarding.jsx index 9cad092a..1a623d14 100644 --- a/src/components/OnBoarding.jsx +++ b/src/components/OnBoarding.jsx @@ -57,7 +57,7 @@ export const OnBoarding = ({ const handleOnPress = () => { if (activeIndex !== slides.length - 1) { - onBoardingRef.current.snapToNext(); + setTimeout(() => onBoardingRef.current?.snapToNext(), 250); setActiveIndex(onBoardingRef.current._activeItem); } else onComplete(); };