Skip to content

Commit

Permalink
[chore] 코딩 컨벤션 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
jiwon2724 committed Aug 25, 2024
1 parent d245c55 commit 655e6de
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import androidx.compose.runtime.MutableState
import androidx.compose.runtime.getValue
import androidx.compose.runtime.mutableStateListOf
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.remember
import androidx.compose.runtime.setValue
import androidx.lifecycle.ViewModel
import androidx.lifecycle.viewModelScope
Expand Down
12 changes: 6 additions & 6 deletions feature/login/src/main/java/pokitmons/pokit/login/LoginScreen.kt
Original file line number Diff line number Diff line change
Expand Up @@ -163,10 +163,10 @@ private fun googleLogin(
}

// TODO 배포 후 피처 추가
//private fun appleLogin(
// private fun appleLogin(
// context: Context,
// snsLogin: (String, String) -> Unit,
//) {
// ) {
// val provider = OAuthProvider.newBuilder("apple.com").apply {
// addCustomParameter("locale", "ko")
// }
Expand All @@ -187,12 +187,12 @@ private fun googleLogin(
// // TODO 로그인 실패 바텀시트 렌더링
// }
// }
//}
// }
//
//private fun handleAuthResult(
// private fun handleAuthResult(
// authResult: AuthResult,
// snsLogin: (String, String) -> Unit,
//) {
// ) {
// val user = authResult.user
// user?.getIdToken(true)?.addOnCompleteListener { task ->
// if (task.isSuccessful) {
Expand All @@ -206,4 +206,4 @@ private fun googleLogin(
// // TODO 로그인 실패 바텀시트 렌더링
// }
// }
//}
// }

0 comments on commit 655e6de

Please sign in to comment.