diff --git a/tone-page-server/src/auth/auth.controller.ts b/tone-page-server/src/auth/auth.controller.ts index 09a25e4..3857856 100644 --- a/tone-page-server/src/auth/auth.controller.ts +++ b/tone-page-server/src/auth/auth.controller.ts @@ -19,7 +19,7 @@ export class AuthController { case 'email': return this.authService.loginWithEmail(loginDto); default: - throw new BadRequestException('Invalid login type'); + throw new BadRequestException('服务器错误'); } } }