diff --git a/src/types/elements/seat.ts b/src/types/elements/seat.ts index ed0eb3e..9397ceb 100644 --- a/src/types/elements/seat.ts +++ b/src/types/elements/seat.ts @@ -17,6 +17,6 @@ export interface ISeat { x: number; y: number; label?: string; - category?: string; - status?: SeatStatus; + category?: string | null; + status?: SeatStatus | string; }