From a46191eac96a35897f6c64ad3dfc0138f1b5a09c Mon Sep 17 00:00:00 2001 From: CJY Date: Sat, 4 May 2024 03:05:54 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EB=A7=88=EC=9D=B4=ED=8E=98=EC=9D=B4?= =?UTF-8?q?=EC=A7=80=20=ED=91=9C=20=ED=99=95=EC=9D=B8=EC=9A=A9=20console?= =?UTF-8?q?=20=EC=B6=9C=EB=A0=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/mypage/MyScoreSection.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/mypage/MyScoreSection.tsx b/src/components/mypage/MyScoreSection.tsx index a69dbec8..e187e0de 100644 --- a/src/components/mypage/MyScoreSection.tsx +++ b/src/components/mypage/MyScoreSection.tsx @@ -36,7 +36,11 @@ const MyScoreSection = ({ userProfile }: { userProfile: UserProfile }) => { ); useEffect(() => { + console.log('출석 데이터:', userAttendance); + console.log('과제 데이터:', userAssignment); if (userAttendance && userAssignment) { + console.log(userAttendance); + console.log(userAssignment); const score = getTotalScore({ absence: userAttendance.absence, truancy: userAttendance.truancy,