diff --git a/apps/site/src/app/(main)/schedule/components/EventCard.tsx b/apps/site/src/app/(main)/schedule/components/EventCard.tsx index 814a6a82..fef99ff8 100644 --- a/apps/site/src/app/(main)/schedule/components/EventCard.tsx +++ b/apps/site/src/app/(main)/schedule/components/EventCard.tsx @@ -7,6 +7,7 @@ export default function EventCard({ now, title, eventType, + location, virtual, startTime, endTime, @@ -39,6 +40,7 @@ export default function EventCard({ now={now} title={title} eventType={eventType} + location={location} virtual={virtual} startTime={startTime} endTime={endTime} diff --git a/apps/site/src/app/(main)/schedule/components/EventRegular.tsx b/apps/site/src/app/(main)/schedule/components/EventRegular.tsx index fe731b52..f3fdb784 100644 --- a/apps/site/src/app/(main)/schedule/components/EventRegular.tsx +++ b/apps/site/src/app/(main)/schedule/components/EventRegular.tsx @@ -73,6 +73,7 @@ export default function EventRegular({ now, title, eventType, + location, virtual, startTime, endTime, @@ -97,6 +98,7 @@ export default function EventRegular({ {organization === undefined ? hosts?.join(", ") : organization}

)} + {location !== undefined &&

Location: {location}

}

{dateTimeFormat.formatRange(startTimeInPST, endTimeInPST)} PST{" "} {virtual && | Meeting Link} diff --git a/apps/site/src/app/(main)/schedule/sections/SchedulePage.tsx b/apps/site/src/app/(main)/schedule/sections/SchedulePage.tsx index 2ccf146e..f63637fa 100644 --- a/apps/site/src/app/(main)/schedule/sections/SchedulePage.tsx +++ b/apps/site/src/app/(main)/schedule/sections/SchedulePage.tsx @@ -18,7 +18,7 @@ interface ScheduleProps { schedule: { title: string; eventType: string; - location?: string | undefined; + location?: string; virtual?: string | undefined; startTime: Date; endTime: Date;