diff --git a/packages/features/bookings/Booker/components/BookEventForm/BookFormAsModal.tsx b/packages/features/bookings/Booker/components/BookEventForm/BookFormAsModal.tsx index e1c6223d51..7f3b04fc20 100644 --- a/packages/features/bookings/Booker/components/BookEventForm/BookFormAsModal.tsx +++ b/packages/features/bookings/Booker/components/BookEventForm/BookFormAsModal.tsx @@ -15,7 +15,7 @@ export function BookFormAsModal({ visible, onCancel }: { visible: boolean; onCan const selectedDuration = useBookerStore((state) => state.selectedDuration); const { data } = useEvent(); const parsedSelectedTimeslot = dayjs(selectedTimeslot); - const { timeFormat } = useTimePreferences(); + const { timeFormat ,timezone} = useTimePreferences(); return ( @@ -27,7 +27,7 @@ export function BookFormAsModal({ visible, onCancel }: { visible: boolean; onCan
- {parsedSelectedTimeslot.format("LL")} {parsedSelectedTimeslot.format(timeFormat)} + {parsedSelectedTimeslot.format("LL")} {parsedSelectedTimeslot.tz(timezone).format(timeFormat)} {(selectedDuration || data?.length) && (