diff --git a/src/views/components/common/ConflictsWithWarning.tsx b/src/views/components/common/ConflictsWithWarning.tsx index b4055e5c..7284bdf6 100644 --- a/src/views/components/common/ConflictsWithWarning.tsx +++ b/src/views/components/common/ConflictsWithWarning.tsx @@ -23,12 +23,17 @@ export default function ConflictsWithWarning({ className, conflicts }: Conflicts variant='mini' className={clsx( className, - 'min-w-21 w-21 flex flex-col items-start gap-2.5 rounded bg-[#AF2E2D] p-2.5 text-white' + 'min-w-21 w-21 flex flex-col items-start gap-2.5 rounded bg-theme-red p-2.5 text-white' )} >
Conflicts With:
{conflicts.map(course => ( -
{`${course.department} ${course.number} (${course.uniqueId})`}
+
+ + {course.department} {course.number} + {' '} + ({course.uniqueId}) +
))} );