Skip to content

Commit

Permalink
Merge pull request #95 from AR-TTUBEOG/hotfix/94
Browse files Browse the repository at this point in the history
  • Loading branch information
sanggae4133 authored Mar 20, 2024
2 parents d68d231 + 84bebf3 commit bf73fcd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public ResponseEntity<?> createSpot(
@GetMapping("/{spotId}")
public ResponseEntity<?> findBySpotId(
@CurrentUser HttpServletRequest request,
@RequestParam(name = "spotId") Long spotId
@PathVariable(name = "spotId") Long spotId
) throws JsonProcessingException {
return spotService.findBySpotId(request, spotId);
}
Expand Down

0 comments on commit bf73fcd

Please sign in to comment.