diff --git a/src/components/Speakers/Speakers.tsx b/src/components/Speakers/Speakers.tsx index b22db83..1573945 100644 --- a/src/components/Speakers/Speakers.tsx +++ b/src/components/Speakers/Speakers.tsx @@ -11,28 +11,31 @@ const Speakers = ({ data }: { data: SpeakersProps }) => {
-
-
-
-
- - {data.title} - -
- - {data.subtitle} - - - {data.description} + {data.isRegistrationEnabled && ( +
+
+
+
+ + {data.title} +
+ + {data.subtitle} + + + {data.description} + +
-
- {data.isRegistrationEnabled && (
{ {data.registrationLabel}
- )} +
-
+ )}
);