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 333f2ef commit 848c549Copy full SHA for 848c549
app/src/main/java/co/kr/sopt_seminar_30th/presentation/viewmodel/SignInViewModel.kt
@@ -27,9 +27,6 @@ class SignInViewModel @Inject constructor(
27
var userId = MutableLiveData<String>()
28
var userPassword = MutableLiveData<String>()
29
30
- private var _autoLogin = MutableLiveData<Boolean>(false)
31
- val autoLogin: LiveData<Boolean> get() = _autoLogin
32
-
33
private var _isSuccess = SingleLiveEvent<Boolean>()
34
val isSuccess: LiveData<Boolean> get() = _isSuccess
35
0 commit comments