This commit is contained in:
2026-05-30 16:15:50 +08:00
parent 5c84a4bb89
commit a02da678a1
3 changed files with 6 additions and 2 deletions

View File

@@ -641,7 +641,10 @@ export default class HomeScreen extends Component<any, HomeScreenState> {
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))