RecruitmentBanner, thank you Lukas

This commit is contained in:
Sriram Hariharan
2023-03-12 23:34:58 -05:00
parent fe4f0e7ecd
commit 6d4a4307cf
5 changed files with 79 additions and 4 deletions

View File

@@ -31,7 +31,6 @@ export default function CourseHeader({ course, onClose }: Props) {
{course.courseName} ({course.department} {course.number})
</Text>
<Link
span
url={course.url}
className={styles.uniqueId}
size='medium'
@@ -55,7 +54,7 @@ export default function CourseHeader({ course, onClose }: Props) {
return (
<>
{numInstructors > 1 && index === course.instructors.length - 1 ? '& ' : ''}
<Link key={name} span size='medium' weight='normal' url={url}>
<Link key={name} size='medium' weight='normal' url={url}>
{name}
</Link>
{numInstructors > 2 && !isLast ? ', ' : ''}
@@ -80,7 +79,6 @@ export default function CourseHeader({ course, onClose }: Props) {
</Text>
{' in '}
<Link
span
size='medium'
weight='normal'
url={getBuildingUrl(meeting.location?.building)}