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 })
|
@Cordova({ sync: true })
|
||||||
signInWithVerificationId(
|
signInWithVerificationId(
|
||||||
verificationId: string,
|
verificationId: string,
|
||||||
smsCode: number
|
smsCode: string
|
||||||
): Promise<any> {
|
): Promise<any> {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user