From 43b2394e6aa103d86b2b5c4ea8af75739f616a67 Mon Sep 17 00:00:00 2001 From: rgo Date: Fri, 3 Nov 2023 07:39:23 +0100 Subject: [PATCH] Updated modal with talkLocation --- src/components/shared/modal/modal.jsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/shared/modal/modal.jsx b/src/components/shared/modal/modal.jsx index af0e331..04df11a 100644 --- a/src/components/shared/modal/modal.jsx +++ b/src/components/shared/modal/modal.jsx @@ -49,6 +49,7 @@ const Modal = ({ isVisible, modalData, onModalHide, isPresentationShow }) => { speakers = [], isCoincidedEvent = false, isWorkshop = false, + talkLocation = '', } = modalData; const shouldReduceMotion = useReducedMotion(); const headingId = useId(); @@ -90,6 +91,9 @@ const Modal = ({ isVisible, modalData, onModalHide, isPresentationShow }) => { {duration} + + {talkLocation} + {speakers.length > 0 && speakers.map(({ id: speakerId, name, photo }, index) => (