Skip to content

Commit

Permalink
Update schedule bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
acupoftee committed Mar 17, 2020
1 parent 3d51b97 commit 555b330
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/renderer/containers/Schedule/Schedule.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,9 @@ const Schedule = ({
location: event.eventBanner?.venue.title,
ticketLink: event.eventBanner?.ticket.link.href,
}}
matches={event.matches}
matches={event.matches.filter(
(match: any) => match !== false
)}
/>
{idx !== scheduleData.tableData.events.length - 1 && (
<Divider key={idx + 1} />
Expand Down

0 comments on commit 555b330

Please sign in to comment.