fix(sp28): use fmt.usd instead of fmt.money in MatchedClaimPanel

This commit is contained in:
Nora
2026-07-02 11:46:45 -06:00
parent 9e16b8d9bd
commit 3fd2c445e7
@@ -273,7 +273,7 @@ function LinkToClaimDropdown({
> >
<span className="mono text-foreground">{c.id}</span> <span className="mono text-foreground">{c.id}</span>
<span className="text-[11px] text-muted-foreground/80"> <span className="text-[11px] text-muted-foreground/80">
{c.patientName || "—"} · {fmt.money(c.billedAmount)} {c.patientName || "—"} · {fmt.usd(c.billedAmount)}
</span> </span>
</button> </button>
)) ))