fix(subscription): update price formatting to use dot decimal separator

This commit is contained in:
2026-07-01 18:12:03 +08:00
parent 4253da4e4c
commit 0251916a8a
2 changed files with 24 additions and 8 deletions
@@ -26,7 +26,7 @@ function formatAmount(amountCents: number | null): string | null {
}
function formatOfferAmount(amountCents: number | null): string {
return (formatAmount(amountCents) ?? "").replace(".", ",");
return formatAmount(amountCents) ?? "";
}
function formatOfferCurrency(currency: string): string {