mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-01-31 10:36:14 +08:00
signInWithVerificationId parameter mismatch (#3354)
by.chemerisuk.cordova.firebase.FirebaseAuthenticationPlugin.signInWithVerificationId argument 2 has type java.lang.String, got java.lang.Integer smsCode has to be string instead of number
This commit is contained in:
parent
bfee712cdc
commit
bb80d00f58
@ -109,7 +109,7 @@ export class FirebaseAuthentication extends IonicNativePlugin {
|
||||
@Cordova({ sync: true })
|
||||
signInWithVerificationId(
|
||||
verificationId: string,
|
||||
smsCode: number
|
||||
smsCode: string
|
||||
): Promise<any> {
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user