Skip to content

Commit

Permalink
refactor : 카페 목록 조회 반환값 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
TaeHoon0 committed Jul 23, 2024
1 parent 16dcd4d commit d7c9b41
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ public Response searchStudyCafes(@RequestParam(required = false) String city,
@RequestParam(required = false) String town,
@RequestParam(defaultValue = "1") int page) {

return Response.success(Result.toResponseDto((studyCafeService.searchStudyCafes(city, country, town, page))));
return Response.success(Result.toResponseDto((studyCafeService.searchStudyCafes(city, country, town, page)).getContent()));
}
}

0 comments on commit d7c9b41

Please sign in to comment.