Skip to content

Commit

Permalink
๐ŸŽจ :: ์ฝ”๋“œ Formatting ์ ์šฉ
Browse files Browse the repository at this point in the history
  • Loading branch information
youn9k committed Aug 17, 2024
1 parent 3c8b336 commit 119a7b3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ final class MyInfoViewController: BaseReactorViewController<MyInfoReactor>, Edit
super.viewDidLoad()
reactor?.action.onNext(.viewDidLoad)
}

override public func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)
navigationController?.interactivePopGestureRecognizer?.delegate = self
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ final class SettingViewController: BaseReactorViewController<SettingReactor> {
setSettingItemTableView()
view.backgroundColor = DesignSystemAsset.BlueGrayColor.blueGray100.color
}

override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)
LogManager.analytics(CommonAnalyticsLog.viewPage(pageName: .setting))
Expand Down Expand Up @@ -189,7 +189,7 @@ final class SettingViewController: BaseReactorViewController<SettingReactor> {
.disposed(by: disposeBag)

settingView.rx.withDrawButtonDidTap
.do(onNext: {
.do(onNext: {
LogManager.analytics(SettingAnalyticsLog.clickWithdrawButton)
})
.map { Reactor.Action.withDrawButtonDidTap }
Expand All @@ -216,7 +216,7 @@ extension SettingViewController: UITableViewDelegate {
case .appPush:
LogManager.analytics(SettingAnalyticsLog.clickNotificationButton)
reactor?.action.onNext(.appPushSettingNavigationDidTap)
case .serviceTerms: LogManager.analytics(SettingAnalyticsLog.clickServiceTermsButton)
case .serviceTerms: LogManager.analytics(SettingAnalyticsLog.clickServiceTermsButton)
reactor?.action.onNext(.serviceTermsNavigationDidTap)
case .privacy:
LogManager.analytics(SettingAnalyticsLog.clickPrivacyButton)
Expand Down

0 comments on commit 119a7b3

Please sign in to comment.