diff --git a/apps/meteor/app/lib/server/lib/loginErrorMessageOverride.ts b/apps/meteor/app/lib/server/lib/loginErrorMessageOverride.ts index e2a6e0d105812..0cd3d56dad4e3 100644 --- a/apps/meteor/app/lib/server/lib/loginErrorMessageOverride.ts +++ b/apps/meteor/app/lib/server/lib/loginErrorMessageOverride.ts @@ -9,7 +9,7 @@ Accounts._runLoginHandlers = async function (methodInvocation, options) { const result = await _runLoginHandlers.call(Accounts, methodInvocation, options); if (result.error instanceof Meteor.Error) { - result.error = new Meteor.Error(401, 'User not found'); + result.error = new Meteor.Error(401, 'Incorrect username or password'); } return result;