Skip to content

Commit

Permalink
[FIX]#181: 카카오 로그인 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
flash159483 committed Oct 3, 2024
1 parent a19b9c5 commit f69a6f8
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,10 @@ fun AuthScreen(
Button(
onClick = {
coroutineScope.launch {
val token = kakaoLogin.loginWithKakao(context)
viewModel.onAction(AuthAction.LoginWithKakao(token))
runCatching {
val token = kakaoLogin.loginWithKakao(context)
viewModel.onAction(AuthAction.LoginWithKakao(token))
}
}
},
modifier = Modifier
Expand Down

0 comments on commit f69a6f8

Please sign in to comment.