Skip to content

Commit

Permalink
chore: run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
kamui-fin committed Oct 18, 2023
1 parent ef79a20 commit c7261cd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/planner/Tiles/SemesterCourseItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,9 @@ export const MemoizedSemesterCourseItem = React.memo(
? 'cursor-default bg-neutral-200'
: 'bg-inherit'
: 'cursor-default bg-neutral-200'
} ${semesterLocked || course.locked ? 'text-neutral-400' : 'text-[#1C2A6D]'} ${!isValid && '-order-1'}`}
} ${semesterLocked || course.locked ? 'text-neutral-400' : 'text-[#1C2A6D]'} ${
!isValid && '-order-1'
}`}
onClick={() => {
// Don't open if user is hovering over course info
if (!course.locked && !semesterLocked) setDropdownOpen(true);
Expand Down

0 comments on commit c7261cd

Please sign in to comment.