From f891382f4bf5594ead2cb86585bde00b97236ff7 Mon Sep 17 00:00:00 2001 From: J0onYEong Date: Tue, 9 Jul 2024 19:29:06 +0900 Subject: [PATCH] =?UTF-8?q?[IDLE-72]=20=ED=9A=8C=EC=9B=90=EA=B0=80?= =?UTF-8?q?=EC=9E=85=20=EC=9A=94=EC=B2=AD=ED=9B=84=20=EC=9E=85=EB=A0=A5?= =?UTF-8?q?=EC=A0=95=EB=B3=B4=20=EC=82=AD=EC=A0=9C=20=EA=B8=B0=EB=8A=A5=20?= =?UTF-8?q?=EA=B5=AC=ED=98=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ViewModel/Center/Register/CenterRegisterViewModel.swift | 3 +++ 1 file changed, 3 insertions(+) diff --git a/project/Projects/Presentation/Feature/Auth/Sources/ViewModel/Center/Register/CenterRegisterViewModel.swift b/project/Projects/Presentation/Feature/Auth/Sources/ViewModel/Center/Register/CenterRegisterViewModel.swift index 42f97b39..855c1099 100644 --- a/project/Projects/Presentation/Feature/Auth/Sources/ViewModel/Center/Register/CenterRegisterViewModel.swift +++ b/project/Projects/Presentation/Feature/Auth/Sources/ViewModel/Center/Register/CenterRegisterViewModel.swift @@ -335,6 +335,9 @@ public class CenterRegisterViewModel: ViewModelType { case .failure(let error): printIfDebug("❌ 회원가입 실패: \(error.message)") } + + // 현재까지 입력정보를 모두 삭제 + self.stateObject.clear() }) .disposed(by: self.disposeBag) }