diff --git a/media_commons_booking_app/src/client/routes/booking/components/FormInput.tsx b/media_commons_booking_app/src/client/routes/booking/components/FormInput.tsx index 47febc80..a6aa8892 100644 --- a/media_commons_booking_app/src/client/routes/booking/components/FormInput.tsx +++ b/media_commons_booking_app/src/client/routes/booking/components/FormInput.tsx @@ -518,14 +518,18 @@ const FormInput = ({ handleParentSubmit }) => { )}
- + {roomNumber.some((room) => + [103, 220, 221, 222, 223, 224, 230, 233, 260].includes(Number(room)) + ) && ( + + )} {roomNumber.includes('103') && ( )} - {roomNumber.includes('202') || - (roomNumber.includes('1201') && ( - - ))} + {roomNumber.some((room) => [202, 1201].includes(Number(room))) && ( + + )}
{watch('mediaServices') !== undefined &&