Skip to content

Commit

Permalink
chore: 에러 메시지 속 단어 변경 (신고 → 차단)
Browse files Browse the repository at this point in the history
  • Loading branch information
kmi0817 committed Apr 19, 2024
1 parent 10352b2 commit f7ff37f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BE/src/users/users.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export class UsersService {

const block = await this.blockRepository.findByBlocker(blocker, blocked);
if (block) {
throw new BadRequestException('이미 신고한 회원입니다.');
throw new BadRequestException('이미 차단한 회원입니다.');
}

const blockerUser = await this.userRepository.findById(blocker);
Expand Down

0 comments on commit f7ff37f

Please sign in to comment.