Skip to content

Commit

Permalink
refactor: Modify profileImageUrl (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahyun0326 committed Mar 22, 2024
1 parent 1d34aff commit be65c41
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ private GetMyPageInfoResponseDto(Users user, String email) {
super(ResponseCode.SUCCESS, ResponseMessage.SUCCESS);
this.name = user.getName();
this.email = email;
this.profileImageUrl = null;
this.profileImageUrl = user.getProfileImageUrl();
}

public static ResponseEntity<GetMyPageInfoResponseDto> success(Users user, String email) {
Expand Down

0 comments on commit be65c41

Please sign in to comment.