Skip to content

Commit

Permalink
💩Fix: 누락된 코드 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Zena0128 committed Feb 17, 2024
1 parent 08e5f90 commit 344068d
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ public static MainPageDTO from(List<Plan> planList, List<Do> doList, List<See> s
List<DoViewDTO> doViewDTOS = doList.stream()
.map(DoViewDTO::of)
.toList();
List<SeeViewDTO> seeViewDTO1 = sesL;
List<SeeViewDTO> seeViewDTO1 = seeList.stream()
.map(SeeViewDTO::of)
.toList();

return new MainPageDTO(planViewDTOS, doViewDTOS, seeViewDTO1);

Expand Down

0 comments on commit 344068d

Please sign in to comment.