Skip to content

Commit

Permalink
fix (delete-account) : withdrawn member의 nickname을 null로 변경되도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
chjcode committed Oct 6, 2024
1 parent 8f31712 commit 6af1cd1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public void addRandomPoint(Integer randomPoint) {

public void withdrawMember() {
this.rewardPoint = 0;
this.nickname = "탈퇴한 회원";
this.nickname = null;
this.email = "withdrawnMember";
this.profileIntro = null;
this.picture = null;
Expand Down

0 comments on commit 6af1cd1

Please sign in to comment.