Skip to content

Commit 5ebcc66

Browse files
committed
fix: 내 할일 api dto 변경
1 parent a6cc44a commit 5ebcc66

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/client/app/(afterLogin)/my-study/_components/DailyTaskItem.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const DailyTaskItem = ({
1111
index: number;
1212
}) => {
1313
const {
14-
todoType,
14+
taskType,
1515
week,
1616
deadLine,
1717
attendanceStatus,
@@ -20,7 +20,7 @@ const DailyTaskItem = ({
2020
studyDetailId,
2121
} = dailyTask;
2222

23-
return todoType === "ATTENDANCE" ? (
23+
return taskType === "ATTENDANCE" ? (
2424
<AttendanceStatusBox
2525
attendanceStatus={attendanceStatus || "NOT_ATTENDED"}
2626
deadLine={deadLine}

0 commit comments

Comments
 (0)