fix(subscription): update price formatting to use dot decimal separator
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user