Skip to content

Commit ec6732a

Browse files
committed
Fix users getting stuck on welcome screen
1 parent 5025db7 commit ec6732a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ios/MullvadVPN/Coordinators/ApplicationCoordinator.swift

+2-1
Original file line numberDiff line numberDiff line change
@@ -402,6 +402,8 @@ final class ApplicationCoordinator: Coordinator, Presenting, @preconcurrency Roo
402402
}
403403

404404
private func presentWelcome(animated: Bool, completion: @escaping (Coordinator) -> Void) {
405+
appPreferences.isShownOnboarding = true
406+
405407
let coordinator = WelcomeCoordinator(
406408
navigationController: navigationContainer,
407409
storePaymentManager: storePaymentManager,
@@ -410,7 +412,6 @@ final class ApplicationCoordinator: Coordinator, Presenting, @preconcurrency Roo
410412
)
411413
coordinator.didFinish = { [weak self] in
412414
guard let self else { return }
413-
appPreferences.isShownOnboarding = true
414415
router.dismiss(.welcome, animated: false)
415416
continueFlow(animated: false)
416417
}

0 commit comments

Comments
 (0)