Skip to content

Commit 4138dae

Browse files
authored
Merge pull request #172 from dnd-side-project/refactor/first-sprint
fix(PropController): 중복 저장 수정
2 parents dd9aef2 + 4894f05 commit 4138dae

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

main-server/src/main/java/com/example/demo/domain/prop/controller/PropController.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ public ResponseEntity<PropResponse> uploadImage(@ModelAttribute @Valid UploadPro
4545
MultipartFile file = uploadPropRequestDto.file();
4646
String userId = customUserDetails.getId();
4747
String theme = uploadPropRequestDto.theme();
48-
propService.saveProp(userId, theme, file);
4948
return ResponseEntity.ok().body(propService.saveProp(userId, theme, file));
5049
}
5150

0 commit comments

Comments
 (0)