diff --git a/packages/better-auth/src/api/routes/forget-password.ts b/packages/better-auth/src/api/routes/forget-password.ts index 4267783784..a8fa0e7e4c 100644 --- a/packages/better-auth/src/api/routes/forget-password.ts +++ b/packages/better-auth/src/api/routes/forget-password.ts @@ -99,6 +99,8 @@ export const forgetPassword = createAuthEndpoint( ctx.context.logger.error("Reset Password: User not found", { email }); return ctx.json({ status: true, + message: + "If this email exists in our system, check your email for the reset link", }); } const defaultExpiresIn = 60 * 60 * 1;