Skip to content

Commit d07bd04

Browse files
committed
fix: 가입 완료 화면에서 시스템 뒤로가기 시, 홈화면으로 이동
1 parent 4cbf25a commit d07bd04

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

feature/signup/src/main/java/com/yapp/feature/signup/signup/SignUpViewModel.kt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,15 @@ class SignUpViewModel @Inject constructor(
6666
SignUpStep.Position -> SignUpStep.Password
6767
SignUpStep.Password -> SignUpStep.Email
6868
SignUpStep.Email -> SignUpStep.Name
69-
SignUpStep.Complete,
7069
SignUpStep.Pending,
7170
SignUpStep.Name -> {
7271
postSideEffect(SignUpSideEffect.NavigateBack)
7372
return
7473
}
74+
SignUpStep.Complete -> {
75+
postSideEffect(SignUpSideEffect.NavigateHome)
76+
return
77+
}
7578
}
7679

7780
reduce {

0 commit comments

Comments
 (0)