Skip to content

Commit 194ee9e

Browse files
committed
fixed a typo in a type
1 parent eedf6b7 commit 194ee9e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

library/src/components/timetable/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export namespace TimeTableTypes {
4242
G extends TimeTableGroup,
4343
I extends TimeSlotBooking,
4444
> = _CustomHeaderRowHeaderProps<G, I>
45-
export type CustomHeadeRowTimeSlotProps<
45+
export type CustomHeaderRowTimeSlotProps<
4646
G extends TimeTableGroup,
4747
I extends TimeSlotBooking,
4848
> = _CustomHeaderRowTimeSlotProps<G, I>

showcase/public/showcase-sources.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7937,7 +7937,7 @@ function TestCustomHeaderRowTimeSlot<
79377937
slotsArray,
79387938
entries,
79397939
tableCellRef,
7940-
}: TimeTableTypes.CustomHeadeRowTimeSlotProps<G, I>) {
7940+
}: TimeTableTypes.CustomHeaderRowTimeSlotProps<G, I>) {
79417941
const groupItems = entries[1].items
79427942

79437943
const groupItemsOfCell: I[] = []

showcase/src/components/showcase/wrapper/TimeTableShowcase.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ function TestCustomHeaderRowTimeSlot<
434434
slotsArray,
435435
entries,
436436
tableCellRef,
437-
}: TimeTableTypes.CustomHeadeRowTimeSlotProps<G, I>) {
437+
}: TimeTableTypes.CustomHeaderRowTimeSlotProps<G, I>) {
438438
const groupItems = entries[1].items
439439

440440
const groupItemsOfCell: I[] = []

0 commit comments

Comments
 (0)