From ae13d08017a95e0e201c0e877d2ca6a333256cc6 Mon Sep 17 00:00:00 2001 From: Thomas Trompette Date: Fri, 25 Jul 2025 11:14:27 +0200 Subject: [PATCH] Improve auth google error msg (#13431) As title --- .../engine/core-modules/auth/strategies/google.auth.strategy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/twenty-server/src/engine/core-modules/auth/strategies/google.auth.strategy.ts b/packages/twenty-server/src/engine/core-modules/auth/strategies/google.auth.strategy.ts index b4aa715fe..eb96e6e23 100644 --- a/packages/twenty-server/src/engine/core-modules/auth/strategies/google.auth.strategy.ts +++ b/packages/twenty-server/src/engine/core-modules/auth/strategies/google.auth.strategy.ts @@ -78,7 +78,7 @@ export class GoogleStrategy extends PassportStrategy(Strategy, 'google') { if (!firstVerifiedEmail) { throw new AuthException( - 'No verified email found', + 'Please verify your email address with Google', AuthExceptionCode.EMAIL_NOT_VERIFIED, ); }