Skip to content

Commit

Permalink
fix: ResponseEntity 와일드카드 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
byeon22 committed Jan 24, 2024
1 parent 2aa7016 commit 866f3f5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class WheelController {
@ApiResponses({
@ApiResponse(responseCode = "200", description = "휠 모양 목록 조회 성공"),
})
public ResponseEntity<?> list() {
public ResponseEntity<List<WheelListResponseDto>> list() {
List<WheelListResponseDto> wheelList = wheelService.list();

return ResponseEntity.ok().body(wheelList);
Expand Down

0 comments on commit 866f3f5

Please sign in to comment.