From ad2048b6037e6c3635577b66dc8447a0e66b32da Mon Sep 17 00:00:00 2001 From: Manan Gandhi Date: Wed, 6 Nov 2024 18:47:47 +0530 Subject: [PATCH] [backend] Change verification message --- backend/handlers/auth.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/handlers/auth.js b/backend/handlers/auth.js index e33c5ed..e5b6f25 100644 --- a/backend/handlers/auth.js +++ b/backend/handlers/auth.js @@ -281,7 +281,7 @@ const verifyOtpHandler = async (req, res) => { if (!user.isVerified) { return res.status(403).json({ success: false, - message: "Please verify your account to continue", + message: "Please verify your account from your email inbox to continue", data: null, }); }