Skip to content

Commit

Permalink
Update SemesterCourseItem.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
rennyhoang authored Oct 10, 2023
1 parent 380930a commit b4b99ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/planner/Tiles/SemesterCourseItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ export const MemoizedSemesterCourseItem = React.memo(
)}
</span>
<span className="truncate text-sm">
{title || (course.code[0] == '0' ? '' : <Skeleton />)}
{title || ((course.code[0] == '0' || course.code.includes("Elective")) ? '' : <Skeleton />)}
</span>
</div>
{!semesterLocked && (
Expand Down

0 comments on commit b4b99ae

Please sign in to comment.