@@ -180,7 +178,6 @@ function ScheduleCard({ time, date, talks, scheduleIdx, isLive }) {
const talkLength = talks.length;
return (
{
setSelectedSpeakerId(id);
@@ -281,14 +278,14 @@ function ScheduleTalk({ title, speakers, track, size, proposalLink, isLive }) {
{getTrackRoom(track)}
- {isLive && (
+ {/* {isLive && (
Live
- )}
+ )} */}
)}
@@ -303,7 +300,6 @@ function ScheduleAccordion({
defaultScheduleIndex,
id,
handleTabClick,
- isLive,
}) {
const [selectedSpeakerId, setSelectedSpeakerId] = useState(null);
const handleOpenSpeakerModal = (id) => {
@@ -319,7 +315,7 @@ function ScheduleAccordion({
{date}
{currentSchedule.schedule.map((scheduleItem, scheduleIdx) => {
- const isLive = (defaultScheduleIndex == id && isEventLive(scheduleItem.time));
+ // const isLive = (defaultScheduleIndex == id && isEventLive(scheduleItem.time));
return scheduleItem.talks.map((talk, idx) => {
return (
{scheduleItem.time}
- {isLive && (
+ {/* {isLive && (
Live
- )}
+ )} */}
{talk.proposalLink ? (