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 832ab61 commit a3688d4Copy full SHA for a3688d4
firebase-auth/src/iosMain/kotlin/dev/gitlive/firebase/auth/auth.kt
@@ -27,7 +27,7 @@ actual class FirebaseAuth internal constructor(val ios: FIRAuth) {
27
get() = ios.currentUser?.let { FirebaseUser(it) }
28
29
actual suspend fun signInWithEmailAndPassword(email: String, password: String) =
30
- AuthResult(ios.awaitResult { signInWithEmailAndPassword(email, password, it) })
+ AuthResult(ios.awaitResult { signInWithEmail(email = email, password = password, completion = it) })
31
32
actual suspend fun signInWithCustomToken(token: String) =
33
AuthResult(ios.awaitResult { signInWithCustomToken(token, it) })
0 commit comments