Skip to content

Commit

Permalink
fix : Update auth.service.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
GeunH authored Dec 12, 2023
1 parent dd5fb37 commit 30c6e57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/auth/auth.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export class AuthService {
if (result) return this.signin(loginInfoDto);
else throw new HttpException("LOGIN FAILED", HttpStatus.FORBIDDEN);
} catch (err) {
throw new UnauthorizedException();
throw new HttpException("LOGIN FAILED", HttpStatus.FORBIDDEN);
}
}

Expand Down

0 comments on commit 30c6e57

Please sign in to comment.