fix: correct OTP type in VerifyRegistrationOTP function
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