File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
firebase-auth/src/iosMain/kotlin/dev/gitlive/firebase/auth Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -18,11 +18,14 @@ actual object EmailAuthProvider {
1818 actual fun credential (
1919 email : String ,
2020 password : String
21- ): AuthCredential = AuthCredential (FIREmailAuthProvider .credentialWithEmail(email = email, password = password))
21+ ): AuthCredential =
22+ AuthCredential (FIREmailAuthProvider .credentialWithEmail(email = email, password = password))
2223
23- actual fun getCredentialWithLink (email : String , emailLink : String ): AuthCredential {
24- return AuthCredential (FIREmailAuthProvider .credentialWithEmail(email = email, link = emailLink))
25- }
24+ actual fun getCredentialWithLink (
25+ email : String ,
26+ emailLink : String
27+ ): AuthCredential =
28+ AuthCredential (FIREmailAuthProvider .credentialWithEmail(email = email, link = emailLink))
2629}
2730
2831actual object FacebookAuthProvider {
You can’t perform that action at this time.
0 commit comments