From a51c65bbcf8f2747ae7202b3f13451c01c9610b3 Mon Sep 17 00:00:00 2001 From: Grzegorz Leoniec Date: Fri, 12 Apr 2024 20:51:56 +0200 Subject: [PATCH] Try to fix hanging introduction --- packages/mobile-app/src/screens/modals/Introduction/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/mobile-app/src/screens/modals/Introduction/index.tsx b/packages/mobile-app/src/screens/modals/Introduction/index.tsx index 5320527859..1e0e4b8943 100644 --- a/packages/mobile-app/src/screens/modals/Introduction/index.tsx +++ b/packages/mobile-app/src/screens/modals/Introduction/index.tsx @@ -65,7 +65,7 @@ const Introduction: FC = ({ route }) => { isNew={slide.isNew} nextSlide={ // TODO fix android next button click. does not work correctly - i + 1 === Object.keys(slidesData).length ? finishAction : undefined + i + 1 >= Object.keys(slidesData).length ? finishAction : undefined } /> ));