feat(frontend): render real adjustmentAmount on Remittances page

This commit is contained in:
Tyler
2026-06-20 00:03:56 -06:00
parent 35ffe31447
commit 99c8635178
+1 -1
View File
@@ -138,7 +138,7 @@ export function Remittances() {
{fmt.usdPrecise(r.paidAmount)}
</TableCell>
<TableCell className="text-right display num text-muted-foreground">
{fmt.usdPrecise(r.adjustmentAmount)}
{r.adjustmentAmount > 0 ? fmt.usdPrecise(r.adjustmentAmount) : "—"}
</TableCell>
<TableCell>
<RemitStatusBadge status={r.status} />