From e2041da5a5a42e7fa34a3201e2ca9eb18113a358 Mon Sep 17 00:00:00 2001 From: v6ctor Date: Fri, 8 Nov 2024 16:01:46 -0500 Subject: [PATCH] add fixing changes --- components/CourseCard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/CourseCard.tsx b/components/CourseCard.tsx index d1238b7..5d3a076 100644 --- a/components/CourseCard.tsx +++ b/components/CourseCard.tsx @@ -80,7 +80,7 @@ export default function CourseCard(props: any) { return null; }); - const attributeCodes = props.course.sectionAttributes.map((item, index: number) => { + const attributeCodes = props.course.sectionAttributes.map((item: any, index: number) => { if (item) { return

{item.code}

}