Skip to content

Commit

Permalink
#3 코리반영 괄호로 묶어줌
Browse files Browse the repository at this point in the history
  • Loading branch information
2zerozu committed Oct 8, 2022
1 parent b99d444 commit 436b92b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class SignUpViewModel : ViewModel() {
fun signUpOnClick() {
viewModelScope.launch {
_successSignUp.value =
inputId.value?.length in 6..10 && inputPwd.value?.length in 8..12 && inputMbti.value?.length == 4
(inputId.value?.length in 6..10) && (inputPwd.value?.length in 8..12) && (inputMbti.value?.length == 4)
}
}
}

0 comments on commit 436b92b

Please sign in to comment.