{group.logs.length === 0 ? (
No related runtime logs found for this error group.
) : (
group.logs.map((log, index) => {
const isError = log.level === 'error'
return (
{formatLogTimestamp(log.lastSeen, 'time')}
{log.level}
{log.count > 1 && (
×{log.count}
)}
{formatSingleLineMessage(log.message)}
)
})
)}