From a02da678a124bf983187a0b2d5ccd4a5d067cda6 Mon Sep 17 00:00:00 2001 From: TQCasey <494294315@qq.com> Date: Sat, 30 May 2026 16:15:50 +0800 Subject: [PATCH] fix main --- .gitignore | 1 + components/WalletBindComponents.tsx | 2 +- screens/HomeScreen.tsx | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) 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))