diff --git a/app/routes/_auth+/forgot-password.tsx b/app/routes/_auth+/forgot-password.tsx index 848a421..fc5a1c4 100644 --- a/app/routes/_auth+/forgot-password.tsx +++ b/app/routes/_auth+/forgot-password.tsx @@ -39,7 +39,7 @@ export async function action({ request }: ActionFunctionArgs) { ctx.addIssue({ path: ['email'], code: z.ZodIssueCode.custom, - message: 'No user exists with this username or email', + message: 'No user exists with this email', }) return } @@ -145,11 +145,11 @@ export default function ForgotPasswordRoute() {