+ {t('skills.meetingBots.liveTranscriptHeading')} +
++ {t('skills.meetingBots.liveTranscriptEmpty')} +
+ ) : ( + rows.map(({ turn, index }) => { + const isAssistant = turn.role === 'assistant'; + const isPartial = index === partialIndex; + const { speaker, text } = parseLiveLine(turn.content); + return ( ++ {speaker && {speaker}:} + {text} +
+ ); + }) + )} +