diff --git a/portal/src/pages/Financeiro.tsx b/portal/src/pages/Financeiro.tsx
index 663fa2e..fd0b926 100644
--- a/portal/src/pages/Financeiro.tsx
+++ b/portal/src/pages/Financeiro.tsx
@@ -307,7 +307,10 @@ export default function Financeiro() {
Vencimento |
Valor |
Desconto |
- A Pagar |
+
+ {filter === 'paid' ? 'Valor Pago' :
+ filter === 'all' ? 'Valor / A Pagar' : 'A Pagar'}
+ |
Status |
Ação |
@@ -343,7 +346,16 @@ export default function Financeiro() {
fontWeight: 600,
color: normalizeStatus(payment) === 'overdue' ? 'var(--color-danger)' : 'var(--color-primary-light)'
}}>
- {formatCurrency(getEffectiveValue(payment))}
+
+
+ {formatCurrency(getEffectiveValue(payment))}
+
+ {normalizeStatus(payment) === 'paid' && (
+
+ PAGO
+
+ )}
+
{getStatusBadge(payment)} |
|