diff --git a/apps/web/components/booking/pages/BookingPage.tsx b/apps/web/components/booking/pages/BookingPage.tsx
index b89182af17..552c549379 100644
--- a/apps/web/components/booking/pages/BookingPage.tsx
+++ b/apps/web/components/booking/pages/BookingPage.tsx
@@ -734,62 +734,58 @@ const BookingPage = ({
)}
))}
- {!eventType.disableGuests && (
+ {!eventType.disableGuests && guestToggle && (
- {guestToggle && (
-
-
- {!disableInput && (
-
(
- guest@example.com
- }
- emails={value}
- onChange={onChange}
- getLabel={(
- email: string,
- index: number,
- removeEmail: (index: number) => void
- ) => {
- return (
-
- {email}
- {!disableInput && (
- removeEmail(index)}>
- ×
-
- )}
-
- );
- }}
- />
- )}
- />
- )}
- {/* Custom code when guest emails should not be editable */}
- {disableInput && guestListEmails && guestListEmails.length > 0 && (
-
- {/* // @TODO: user owners are appearing as guest here when should be only user input */}
- {guestListEmails.map((email, index) => {
- return (
-
- {email}
-
- );
- })}
-
- )}
-
- )}
+
+
+ {!disableInput && (
+
(
+ guest@example.com}
+ emails={value}
+ onChange={onChange}
+ getLabel={(
+ email: string,
+ index: number,
+ removeEmail: (index: number) => void
+ ) => {
+ return (
+
+ {email}
+ {!disableInput && (
+ removeEmail(index)}>
+ ×
+
+ )}
+
+ );
+ }}
+ />
+ )}
+ />
+ )}
+ {/* Custom code when guest emails should not be editable */}
+ {disableInput && guestListEmails && guestListEmails.length > 0 && (
+
+ {/* // @TODO: user owners are appearing as guest here when should be only user input */}
+ {guestListEmails.map((email, index) => {
+ return (
+
+ {email}
+
+ );
+ })}
+
+ )}
+
)}
{isSmsReminderNumberNeeded && selectedLocationType !== LocationType.Phone && (
@@ -845,7 +841,7 @@ const BookingPage = ({
- {!guestToggle && (
+ {!eventType.disableGuests && !guestToggle && (