Skip to content

Commit

Permalink
Fix: 변수명 오류 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
marinesnow34 committed Nov 25, 2023
1 parent df6cf5d commit a6017d0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public ResponseEntity<EventRes> getBanners() {

@GetMapping("/main")
public ResponseEntity<EventMainRes> getMain() {
EventMainRes EventMainRes = eventService.getMainEvents();
return new ResponseEntity<>(EventMainRes, HttpStatus.OK);
EventMainRes eventMainRes = eventService.getMainEvents();
return new ResponseEntity<>(eventMainRes, HttpStatus.OK);
}
}

0 comments on commit a6017d0

Please sign in to comment.