From 7316bd47756348a7492f368846ef49b41b9d1c63 Mon Sep 17 00:00:00 2001 From: Hariom Balhara Date: Thu, 16 Feb 2023 10:46:42 +0530 Subject: [PATCH] Update apps/web/components/booking/pages/BookingPage.tsx MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Omar López --- apps/web/components/booking/pages/BookingPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/components/booking/pages/BookingPage.tsx b/apps/web/components/booking/pages/BookingPage.tsx index 2290c35961..ffecebbca8 100644 --- a/apps/web/components/booking/pages/BookingPage.tsx +++ b/apps/web/components/booking/pages/BookingPage.tsx @@ -80,7 +80,7 @@ const BookingFields = ({ let readOnly = (field.editable === "system" || field.editable === "system-but-optional") && !!rescheduleUid; let noLabel = false; - let hidden = false; + let hidden = !!field.hidden; if (field.name === SystemField.Enum.rescheduleReason) { if (!rescheduleUid) { return null;