Skip to content

Commit 08e61c7

Browse files
committed
fix: 프로필 업데이트 오류 수정
1 parent 8101df2 commit 08e61c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/example/log4u/domain/user/controller/UserController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ public ResponseEntity<Void> createMyProfile(
112112
@PutMapping("/me")
113113
public ResponseEntity<Void> updateMyProfile(
114114
@AuthenticationPrincipal CustomOAuth2User customOAuth2User,
115-
UserProfileUpdateRequestDto userProfileUpdateRequestDto
115+
@RequestBody UserProfileUpdateRequestDto userProfileUpdateRequestDto
116116
) {
117117
userService.updateMyProfile(customOAuth2User.getUserId(), userProfileUpdateRequestDto);
118118
return ResponseEntity.ok().build();

0 commit comments

Comments
 (0)