diff --git a/src/components/market/ProductCard.vue b/src/components/market/ProductCard.vue index ea585a6..aaf8c13 100644 --- a/src/components/market/ProductCard.vue +++ b/src/components/market/ProductCard.vue @@ -127,7 +127,7 @@ const handleImageError = () => { const formatPrice = (price: number, currency: string) => { if (currency === 'sat') { - return `${price} sats` + return `${price.toLocaleString('en-US')} sats` } return new Intl.NumberFormat('en-US', { style: 'currency',