diff --git a/src/components/Grade/GradePreview.tsx b/src/components/Grade/GradePreview.tsx index b14365a..9fc5f0b 100644 --- a/src/components/Grade/GradePreview.tsx +++ b/src/components/Grade/GradePreview.tsx @@ -22,10 +22,10 @@ const GradePreview = ({ return ( - 총: {gradeScore * 1.75 + attendenceScore + volunteerScore}/{maxScore} + 총: {Math.floor(gradeScore * 1.75 + attendenceScore + volunteerScore)}/{maxScore} - 성적 점수: {gradeScore * 1.75}/{maxScore - 30} + 성적 점수: {Math.floor(gradeScore * 1.75)}/{maxScore - 30} 출석 점수: {attendenceScore}/15