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

This commit is contained in:
i701 2025-04-20 08:48:42 +05:00
parent 12f981186a
commit de1e76f746

View File

@ -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,
}), }),
}, },
); );