Skip to content

Commit

Permalink
#15 [fix] false로 초기값 주는 것 삭제 -> init 상태를 감지하기 위함
Browse files Browse the repository at this point in the history
  • Loading branch information
stellar-halo committed Dec 7, 2023
1 parent 4561cb2 commit 280a0d0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class SignUpViewModel @Inject constructor(
val password: MutableLiveData<String> = MutableLiveData()
val nickname: MutableLiveData<String> = MutableLiveData()
val mbti: MutableLiveData<String> = MutableLiveData()
private val _isPasswordMeetCriteria: MutableLiveData<Boolean> = MutableLiveData(false)
private val _isPasswordMeetCriteria: MutableLiveData<Boolean> = MutableLiveData()
val isPasswordMeetCriteria: LiveData<Boolean> = _isPasswordMeetCriteria
private val _isMeetCriteria: MutableLiveData<Boolean> = MutableLiveData(false)
val isMeetCriteria: LiveData<Boolean> = _isMeetCriteria
Expand Down

0 comments on commit 280a0d0

Please sign in to comment.