{active && transcript.length === 0 && !typing ? (
{format("startWorkWith", { name: active.name })}
{t.startWorkHint}
) : null}
{visibleTranscript(transcript).map((item, i, items) => (
{item.at && !sameLocalDay(item.at, items[i - 1]?.at) ? (
) : null}
{item.role === "assistant" ? (
) : (
)}
{item.at ? (
) : null}
))}