Skip to content

Commit

Permalink
Try to fix hanging introduction
Browse files Browse the repository at this point in the history
  • Loading branch information
appinteractive authored Apr 12, 2024
1 parent 05a7255 commit a51c65b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const Introduction: FC<Props> = ({ 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
}
/>
));
Expand Down

0 comments on commit a51c65b

Please sign in to comment.