Skip to content

Commit 73db761

Browse files
committed
[BOOK-435] fix: 토끼 리뷰 반영
1 parent 07105bf commit 73db761

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

src/Projects/BKPresentation/Sources/AppCoordinator.swift

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ public final class AppCoordinator: Coordinator, AuthenticationRequiredNotifying,
9696
}
9797
else if currentVersion < latestVersion {
9898
self.presentUpdateSheet(isForced: false) // 권장
99-
self.proceedWithAppFlow()
10099
}
101100
else {
102101
self.proceedWithAppFlow()
@@ -237,7 +236,10 @@ public final class AppCoordinator: Coordinator, AuthenticationRequiredNotifying,
237236
leftButtonAction: AppStoreLinker.openAppStore,
238237
rightButtonTitle: "나중에 하기",
239238
rightButtonAction: { [weak self] in
240-
self?.navigationController.dismiss(animated: true)
239+
guard let self else { return }
240+
self.navigationController.dismiss(animated: true) {
241+
self.proceedWithAppFlow()
242+
}
241243
}
242244
)
243245
)

0 commit comments

Comments
 (0)