Skip to content

Commit

Permalink
[chore/#10] 변수명을 email -> username으로 변경합니다.
Browse files Browse the repository at this point in the history
  • Loading branch information
SYAAINN committed Dec 4, 2024
1 parent dc24357 commit 0d19161
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ fun SignInRoute(
signInState = signInState,
resetSignInState = { authViewModel.resetSignInState() },
onSignUpClick = navigateToSignUp,
onSignInClick = { email, password -> authViewModel.validateSignIn(email, password) },
onSignInClick = { username, password -> authViewModel.validateSignIn(username, password) },
navigateToMain = navigateToMain
)
}
Expand Down Expand Up @@ -230,7 +230,7 @@ fun SignInScreen(
is SignInState.Failure -> {
showToast(
context = context,
message = "아이디와 비밃번호를 다시 확인해주세요."
message = "아이디와 비밀번호를 다시 확인해주세요."
)
resetSignInState()
}
Expand Down

0 comments on commit 0d19161

Please sign in to comment.