fix: update verification error message in VerifyRegistrationOTP function
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 4m36s

This commit is contained in:
i701 2025-04-20 08:37:48 +05:00
parent 9c67386d69
commit 12f981186a

View File

@ -200,12 +200,13 @@ export async function VerifyRegistrationOTP(
}
if (data.message === "User created successfully.") {
return {
message: "Your account could not be verified. Please contact support.",
message:
"Your account could not be verified. Please wait for you verification to be processed.",
status: "verify_error",
};
}
return {
message: data.message,
status: "verify_success",
status: "verify_error",
};
}