Skip to content

Commit

Permalink
Fix: 아이디 찾기 API res boolean 값 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
1223v committed Mar 7, 2024
1 parent 9718319 commit 44981e4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public CeoFindEmailRes findCeoEmail(String phoneNumber) {
}
String ceoInfoEmail = ceoServiceFacade.findCeoEmailByPhone(phoneNumber);
return CeoFindEmailRes.builder()
.success(false)
.success(true)
.message("아이디 " + ceoInfoEmail)
.build();
}
Expand Down

0 comments on commit 44981e4

Please sign in to comment.