From 3346638b4a831a230b3fa7a6d89fc1970e9179d4 Mon Sep 17 00:00:00 2001 From: Akalanka Perera Date: Tue, 27 Feb 2024 16:17:54 +0530 Subject: [PATCH] Patch: seat type --- src/types/elements/seat.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }