diff --git a/.gitignore b/.gitignore index e669e96..61dcc57 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ ios/build ios/Pods android/app/release __pycache__ +others diff --git a/components/WalletBindComponents.tsx b/components/WalletBindComponents.tsx index c516dc0..fa35726 100644 --- a/components/WalletBindComponents.tsx +++ b/components/WalletBindComponents.tsx @@ -106,7 +106,7 @@ export class MobikwikPersonalOTPBind extends Component<{ { isDebug initialMobile={bindPrefillMobile} onRequestOTP={async (wt, p) => - this.wrapOtpCall(() => Api.instance.requestOTP(wt, p.mobile)) + this.wrapOtpCall(() => Api.instance.requestOTP(wt, p.mobile, { + androidId: this.androidId, + tuneUserId: this.tuneUserId, + })) } onVerifyOTP={async (wt, p) => this.wrapOtpCall(() => Api.instance.verifyOTP(wt, p.mobile, p.otp, p))