Changed price to Euro.

This commit is contained in:
FlorianSpeicher
2025-05-03 20:00:14 +02:00
parent 5ed7b314bc
commit f0acd9d236

View File

@@ -70,7 +70,7 @@ export default function Product() {
{item.discount > 0 ? (
<>
<Typography variant="h4" color="primary">
${discountedPrice.toFixed(2)}
{discountedPrice.toFixed(2)}
</Typography>
<Typography
variant="h6"
@@ -85,7 +85,7 @@ export default function Product() {
</>
) : (
<Typography variant="h4" color="primary">
${item.price.toFixed(2)}
{item.price.toFixed(2)}
</Typography>
)}
</Stack>