Skip to content

Commit

Permalink
[FIX] 팀 대시보드 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
yeseul106 committed Jul 22, 2023
1 parent 0f415e5 commit 0806c2f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ public ProjectTeamPuzzleResponseDto getTeamPuzzles(Principal principal, Long pro
if (isReviewDay) {
if (!hasTodayReview) {
if (lastPageValues.size() > 0) {
lastPageValues.remove(teamPuzzleBoard.size() -1 );
lastPageValues.remove(lastPageValues.size() -1 );
}
lastPageValues.add(TeamPuzzleObjectDto.of(today, null, "puzzled" + (lastPageValues.size() + 1)));
}
Expand Down

0 comments on commit 0806c2f

Please sign in to comment.