feat: add new reservation status

pull/7970/head
nafees nazik 2023-03-28 13:23:11 +05:30
parent c8f24aec0e
commit b1dafab774
1 changed files with 2 additions and 0 deletions

View File

@ -37,6 +37,8 @@ const EventReservationSchema: FC<EventReservationSchemaInterface> = ({
case "REJECTED": case "REJECTED":
case "CANCELLED": case "CANCELLED":
return "ReservationCancelled"; return "ReservationCancelled";
case "RESCHEDULED":
return "ReservationCancelled";
case "PENDING": case "PENDING":
return "ReservationPending"; return "ReservationPending";
default: default: