diff --git a/src/content/uiRenderer.ts b/src/content/uiRenderer.ts index 6c3f722..f555759 100644 --- a/src/content/uiRenderer.ts +++ b/src/content/uiRenderer.ts @@ -35,7 +35,7 @@ export function createPriceRow(qualityName: string, data: ItemPriceData, keyPric try { const realPrice = convertUSD(realPriceUSD, currency, rates) const currencyFormatter = new Intl.NumberFormat(locale, { style: "currency", currency: currency }) - realPriceString = currencyFormatter.format(realPrice).replace(/\s+/g, '') + realPriceString = currencyFormatter.format(realPrice) } catch (e) { logError(`Failed to convert USD ${realPriceUSD} to ${currency}`, e) }