From b39c0c1a78318b076dc2effdadd3a06f5a242b50 Mon Sep 17 00:00:00 2001 From: yeonee Date: Wed, 24 Dec 2025 23:17:24 +0900 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20#319=20=EB=B2=84=ED=8A=BC=20?= =?UTF-8?q?=EC=97=B0=ED=83=80=20=EC=8B=9C=20=ED=95=9C=EB=B2=88=EB=A7=8C=20?= =?UTF-8?q?api=EA=B0=80=20=ED=98=B8=EC=B6=9C=EB=90=98=EB=8F=84=EB=A1=9D=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Feature/Login/ViewController/LoginViewController.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Login/ViewController/LoginViewController.swift b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Login/ViewController/LoginViewController.swift index 3c23af4a..9d2792ae 100644 --- a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Login/ViewController/LoginViewController.swift +++ b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Login/ViewController/LoginViewController.swift @@ -57,11 +57,13 @@ extension LoginViewController{ extension LoginViewController { private func bind() { viewModel.output.isRegisteredPublisher + .throttle(for: .seconds(1.0), scheduler: DispatchQueue.main, latest: false) .receive(on: DispatchQueue.main) .sink { result in switch result { case .success(let isRegisterd): ByeBooLogger.debug(isRegisterd) + ByeBooLogger.debug("한번만 호출되나") let nextViewController: UIViewController if isRegisterd { nextViewController = ByeBooTabBar() From 8bf3558183b0f65266b03cacb9a22febe56e2cfa Mon Sep 17 00:00:00 2001 From: yeonee Date: Wed, 24 Dec 2025 23:18:52 +0900 Subject: [PATCH 2/2] =?UTF-8?q?chore:=20#319=20=EB=A1=9C=EA=B7=B8=20?= =?UTF-8?q?=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Feature/Login/ViewController/LoginViewController.swift | 1 - 1 file changed, 1 deletion(-) diff --git a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Login/ViewController/LoginViewController.swift b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Login/ViewController/LoginViewController.swift index 9d2792ae..7e145e2d 100644 --- a/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Login/ViewController/LoginViewController.swift +++ b/ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Login/ViewController/LoginViewController.swift @@ -63,7 +63,6 @@ extension LoginViewController { switch result { case .success(let isRegisterd): ByeBooLogger.debug(isRegisterd) - ByeBooLogger.debug("한번만 호출되나") let nextViewController: UIViewController if isRegisterd { nextViewController = ByeBooTabBar()