{hasEvents && grouped ? (
(["transaction", "installment", "boleto", "card"] as const)
.filter((type) => grouped[type].length > 0)
.map((type) => (
{SECTION_LABELS[type]}
{grouped[type].map((event) => (
{renderEvent(event)}
))}
))
) : (
Nenhum lançamento registrado para este dia.
)}