Skip to content

Commit

Permalink
[Fix]: fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
bayy1216 committed May 30, 2024
1 parent 4ecf60d commit 1861822
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ public ApiResponse<List<UserRes.StrickDto>> getStrick(
@RequestParam(required = false) LocalDate endDate // false면 365일전
) {
return ApiResponse.success(List.of(
new UserRes.StrickDto(LocalDate.now(), Map.of("운동하기",1))
new UserRes.StrickDto(LocalDate.now(), List.of(
new UserRes.DayCountDto(LocalDate.now(), 1)
))
));
}

Expand Down

0 comments on commit 1861822

Please sign in to comment.