Skip to content

Commit c81b5f3

Browse files
committed
Fix crash?
1 parent 4b72e9e commit c81b5f3

File tree

1 file changed

+1
-1
lines changed
  • frontend/src/components/schedule-event-detail

1 file changed

+1
-1
lines changed

frontend/src/components/schedule-event-detail/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ export const ScheduleEventDetail = ({
211211
</Grid>
212212
</Section>
213213
{youtubeVideoId && <YouTubeSection youtubeVideoId={youtubeVideoId} />}
214-
{speakers.length > 0 && (
214+
{speakers && speakers.length > 0 && (
215215
<Section>
216216
{speakers.map((speaker, index) => (
217217
<Fragment key={speaker.fullName}>

0 commit comments

Comments
 (0)