Skip to content

Commit 3cde0d4

Browse files
committed
fix: change completed_at type from string | null to string | undefined to match schema
1 parent b5ba648 commit 3cde0d4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/services/certificate-service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export async function validateCourseCompletion(
6060
progress: number;
6161
completed_lessons: string[];
6262
last_accessed_at: string;
63-
completed_at: string | null;
63+
completed_at: string | undefined;
6464
};
6565

6666
const progress: CourseProgress = {

0 commit comments

Comments
 (0)