Skip to content

Commit

Permalink
refactor: ㅎㅎ
Browse files Browse the repository at this point in the history
  • Loading branch information
see101702 committed Dec 4, 2023
1 parent 3f6e1a8 commit 81490bd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public Response<List<WorkListDto>> getPopularWorkList() {
@Operation(summary = "맞춤 작품 추천 API")
@GetMapping("/recommendation/works")
public Response<List<WorkListDto>> getRecommendWorkList(@AuthenticationPrincipal User user) {
return Response.success(ResponseCode.SUCCESS_OK, getRecommendWorkListService.getRecommendWorkList(user));
return Response.success(ResponseCode.SUCCESS_OK, getRecommendWorkListService.getRecommendWorkList(user).subList(0, 1));
}

// @Operation(summary = "맞춤 작품 추천 API")
Expand Down

0 comments on commit 81490bd

Please sign in to comment.