🐛 Fix issue where wrong start time is shown on event page (#1791)

This commit is contained in:
Luke Vella 2025-07-04 14:26:12 +01:00 committed by GitHub
parent 9a2dd03c35
commit 07e951ce6f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -155,7 +155,7 @@ export default async function Page(props: {
<ScheduledEventListItem
eventId={event.id}
key={event.id}
floating={event.timeZone === null}
floating={!event.timeZone}
title={event.title}
start={event.start}
end={event.end}