fix: update OTP verification status message in VerifyRegistrationOTP function
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 6m20s

This commit is contained in:
i701 2025-04-20 08:49:53 +05:00
parent de1e76f746
commit 6a078d918e

View File

@ -207,6 +207,6 @@ export async function VerifyRegistrationOTP(
} }
return { return {
message: data.message, message: data.message,
status: "verify_error", status: "otp_error",
}; };
} }