Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Oopsie now it should work
  • Loading branch information
regalijan committed Nov 9, 2024
1 parent 8926b0b commit 065fb86
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/routes/events-calendar.tsx
Expand Up @@ -116,7 +116,7 @@ export default function () {
)?.name
}
<br />
Event Type: {eventData?.type.toUpperCase()}
Event Type: {eventData?.type?.toUpperCase()}
<br />
Details: {eventData?.details}
<br />
Expand All @@ -135,6 +135,7 @@ export default function () {
setEventData(
data.eventList.find((ev) => ev.id === e.id) as { [k: string]: any },
);
onOpen();
}}
onSelectSlot={(s) => {
const date = s.slots.at(0) as Date;
Expand Down

0 comments on commit 065fb86

Please sign in to comment.