diff --git a/app/settings/components/billing/billing-history.tsx b/app/settings/components/billing/billing-history.tsx index 956ea7b..f043e4e 100644 --- a/app/settings/components/billing/billing-history.tsx +++ b/app/settings/components/billing/billing-history.tsx @@ -46,33 +46,35 @@ export default function BillingHistory() { - {typeof payments !== "undefined" - ? payments.map((payment) => ( - - - - - - {payment.amount} {payment.currency} - - - {payment.is_paid === 1 ? "Paid" : "Upcoming"} - - - {typeof payment.receipt_url !== "undefined" ? ( - - View receipt - - ) : null} - - - )) - : null} + {payments.map((payment) => ( + + + + + + {Intl.NumberFormat(undefined, { + style: "currency", + currency: payment.currency, + currencyDisplay: "narrowSymbol", + }).format(payment.amount)} + + + {payment.is_paid === 1 ? "Paid" : "Upcoming"} + + + {typeof payment.receipt_url !== "undefined" ? ( + + View receipt + + ) : null} + + + ))}