Skip to content

Commit

Permalink
fix: 레벨 4이상 처리 (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hys-Lee authored Jul 31, 2024
1 parent f7ad29b commit 41c8c98
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function MyPageGrassSection({ baekjoonData }: { baekjoonData: BaekjoonResponse[]
res.push({
date: formattedDate,
count: filtered.length,
level: filtered.length,
level: filtered.length >= 4 ? 4 : filtered.length,
});
}
}
Expand Down

0 comments on commit 41c8c98

Please sign in to comment.