Skip to content

Commit

Permalink
Merge pull request #10876 from wellcomecollection/schedule-early-regi…
Browse files Browse the repository at this point in the history
…stration

Show early registration info inside event schedule
  • Loading branch information
davidpmccormick committed May 20, 2024
2 parents c36e74a + 9dfee1f commit 9f63ee3
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,13 @@ const EventScheduleItem: FunctionComponent<Props> = ({
!event.bookingEnquiryTeam &&
!(event.schedule && event.schedule.length > 1) && (
<Space $v={{ size: 'm', properties: ['margin-top'] }}>
<Message text="Just turn up" />
<Message
text={`${
event.hasEarlyRegistration
? 'Arrive early to register'
: 'Just turn up'
}`}
/>
</Space>
)}

Expand Down

0 comments on commit 9f63ee3

Please sign in to comment.