Skip to content
This repository has been archived by the owner on Oct 5, 2024. It is now read-only.

Commit

Permalink
Fix Types
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonytedja committed Feb 21, 2024
1 parent 6a5f5a1 commit a4fead6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions types/Event/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,17 @@ export type Event = {
attributes: {
title: string
description: string
location?: string
location?: string | null
startTime: Date
endTime: Date
important: boolean
host: EventHosts
presenter?: string
presenter?: string | null
type: EventTypes
/* used only when displaying event details in modal */
actualEventTimes?: {
startTime: Date
endTime?: Date
endTime?: Date | null
}
}
}
Expand Down

0 comments on commit a4fead6

Please sign in to comment.