We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cbf25a commit d07bd04Copy full SHA for d07bd04
feature/signup/src/main/java/com/yapp/feature/signup/signup/SignUpViewModel.kt
@@ -66,12 +66,15 @@ class SignUpViewModel @Inject constructor(
66
SignUpStep.Position -> SignUpStep.Password
67
SignUpStep.Password -> SignUpStep.Email
68
SignUpStep.Email -> SignUpStep.Name
69
- SignUpStep.Complete,
70
SignUpStep.Pending,
71
SignUpStep.Name -> {
72
postSideEffect(SignUpSideEffect.NavigateBack)
73
return
74
}
+ SignUpStep.Complete -> {
75
+ postSideEffect(SignUpSideEffect.NavigateHome)
76
+ return
77
+ }
78
79
80
reduce {
0 commit comments