From 6a078d918edd0ab100a46a268a7f896e3596045a Mon Sep 17 00:00:00 2001 From: i701 Date: Sun, 20 Apr 2025 08:49:53 +0500 Subject: [PATCH] fix: update OTP verification status message in VerifyRegistrationOTP function --- queries/authentication.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/queries/authentication.ts b/queries/authentication.ts index 34a66ad..9b4781c 100644 --- a/queries/authentication.ts +++ b/queries/authentication.ts @@ -207,6 +207,6 @@ export async function VerifyRegistrationOTP( } return { message: data.message, - status: "verify_error", + status: "otp_error", }; }