Skip to content

Commit f50eade

Browse files
committed
Fix blank page on home
1 parent 91493ee commit f50eade

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src-ts/tools/learn/welcome/courses-card/CoursesCard.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const CoursesCard: FC<CoursesCardProps> = (props: CoursesCardProps) => {
6060
}
6161

6262
const completionTimeRange: TCACertificationCompletionTimeRange = useHoursEstimateToRange(
63-
props.certification.course.estimatedCompletionTimeValue,
63+
props.certification.course?.estimatedCompletionTimeValue,
6464
)
6565

6666
return (

0 commit comments

Comments
 (0)