Skip to content

Commit

Permalink
cleaning
Browse files Browse the repository at this point in the history
  • Loading branch information
23langloisj committed Dec 4, 2024
1 parent b3d2a1f commit b8d6a34
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/frontend/components/Sidebar/SectionRequirement.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,12 @@ const SectionRequirement: React.FC<SidebarRequirementProps> = ({
coursesTaken.forEach((course) => {
if (
requirement.type === "COURSE" &&
course.classId === requirement.classId.toString() &&
course.subject === requirement.subject
getCourseDisplayString(course) === getCourseDisplayString(requirement)
) {
isTrue = true;
}
});
}
console.log(isTrue, " is the");
return isTrue;
};

Expand Down

0 comments on commit b8d6a34

Please sign in to comment.