Skip to content

Commit

Permalink
Merge pull request #89 from Team-B1ND/FIX/#85
Browse files Browse the repository at this point in the history
FIX/#85
  • Loading branch information
GayeongKimm authored Jun 20, 2024
2 parents a6b7fc5 + e72ceb8 commit a78e3b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public Response updateMemberInfo(UpdateMemberInfoReq req) {
Member member = service.getMemberFromSession();
member.updateInfo(req.name(), req.email(), req.phone(), req.profileImage());

// service.save(member);
service.save(member);
return Response.noContent("내 정보 수정 성공");
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
@RestController
@RequestMapping("/upload")
@RequiredArgsConstructor
public class UploadController {
public class UploadController {

private final UploadService uploadService;

Expand Down

0 comments on commit a78e3b7

Please sign in to comment.