diff --git a/Server/banchango/src/main/java/com/sundaegukbap/banchango/recipe/presentation/RecipeController.java b/Server/banchango/src/main/java/com/sundaegukbap/banchango/recipe/presentation/RecipeController.java index 914d90e..c5d53ec 100644 --- a/Server/banchango/src/main/java/com/sundaegukbap/banchango/recipe/presentation/RecipeController.java +++ b/Server/banchango/src/main/java/com/sundaegukbap/banchango/recipe/presentation/RecipeController.java @@ -44,7 +44,7 @@ public ResponseEntity getRecipeDetail(@PathVariable(" @PostMapping("/{userId}") @Operation(summary = "추천 레시피 카테고리 변경", description = "추천 레시피 카테고리를 변경하고 새로운 추천 레시피를 받아옵니다.") public ResponseEntity changeRecipeCategory(@PathVariable("userId") Long userId, - @RequestParam(defaultValue = "전체") RecipeCategory recipeCategory) { + @RequestParam(defaultValue = "전체") RecipeCategory recipeCategory) { recipeService.changeRecipeCategory(userId, recipeCategory); return new ResponseEntity<>("카테고리에 맞게 추천 레시피목록이 변경되었습니다.", HttpStatus.OK); }