Skip to content

Commit

Permalink
add fixing changes
Browse files Browse the repository at this point in the history
  • Loading branch information
v6ctor committed Nov 8, 2024
1 parent 7719d42 commit e2041da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/CourseCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 <p key={index}>{item.code}</p>
}
Expand Down

0 comments on commit e2041da

Please sign in to comment.