We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6cc44a commit 5ebcc66Copy full SHA for 5ebcc66
apps/client/app/(afterLogin)/my-study/_components/DailyTaskItem.tsx
@@ -11,7 +11,7 @@ const DailyTaskItem = ({
11
index: number;
12
}) => {
13
const {
14
- todoType,
+ taskType,
15
week,
16
deadLine,
17
attendanceStatus,
@@ -20,7 +20,7 @@ const DailyTaskItem = ({
20
studyDetailId,
21
} = dailyTask;
22
23
- return todoType === "ATTENDANCE" ? (
+ return taskType === "ATTENDANCE" ? (
24
<AttendanceStatusBox
25
attendanceStatus={attendanceStatus || "NOT_ATTENDED"}
26
deadLine={deadLine}
0 commit comments