Skip to content

Commit

Permalink
Make data optional in timerange day component
Browse files Browse the repository at this point in the history
  • Loading branch information
vgeary96 committed Aug 18, 2021
1 parent 9b12ffc commit a9e0a75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/calendar/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ export type CalendarCanvasProps = Dimensions &
}
>

export type TimeRangeDayData = CalendarDatum & {
export type TimeRangeDayData = (Omit<CalendarDatum, 'value'> | CalendarDatum) & {
coordinates: {
x: number
y: number
Expand Down

0 comments on commit a9e0a75

Please sign in to comment.