Skip to content

Commit

Permalink
chore:
Browse files Browse the repository at this point in the history
  • Loading branch information
GayeongKimm committed Aug 1, 2024
1 parent 5b99bb0 commit 16bb5f9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class MemberService {

@Transactional(rollbackFor = Exception.class)
public Response deleteMember(){
MemberEntity member = memberRepository.findByMemberId(getCurrentMember.current().getMemberId());
MemberEntity member = getCurrentMember.current();
member.setMemberState(MemberState.DELETED);
return Response.of(HttpStatus.OK, "성공");
}
Expand Down

0 comments on commit 16bb5f9

Please sign in to comment.