mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-07-26 07:30:22 +00:00
fix: correct OTP type in VerifyRegistrationOTP function
Some checks are pending
Build and Push Docker Images / Build and Push Docker Images (push) Has started running
Some checks are pending
Build and Push Docker Images / Build and Push Docker Images (push) Has started running
This commit is contained in:
@ -162,7 +162,7 @@ export async function VerifyRegistrationOTP(
|
|||||||
},
|
},
|
||||||
body: JSON.stringify({
|
body: JSON.stringify({
|
||||||
mobile: mobile,
|
mobile: mobile,
|
||||||
otp: Number.parseInt(otp as string),
|
otp: otp as string,
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
Reference in New Issue
Block a user