${profile
? html`
`
: html`
`}
${statuses.map((status, i) => {
const handle = didHandleMap[status.authorDid] || status.authorDid
const date = ts(status)
return html`
@${handle}
${date === TODAY
? `is feeling ${status.status} today`
: `was feeling ${status.status} on ${date}`}
`
})}