Changed price to Euro.
This commit is contained in:
@@ -70,7 +70,7 @@ export default function Product() {
|
|||||||
{item.discount > 0 ? (
|
{item.discount > 0 ? (
|
||||||
<>
|
<>
|
||||||
<Typography variant="h4" color="primary">
|
<Typography variant="h4" color="primary">
|
||||||
${discountedPrice.toFixed(2)}
|
€{discountedPrice.toFixed(2)}
|
||||||
</Typography>
|
</Typography>
|
||||||
<Typography
|
<Typography
|
||||||
variant="h6"
|
variant="h6"
|
||||||
@@ -85,7 +85,7 @@ export default function Product() {
|
|||||||
</>
|
</>
|
||||||
) : (
|
) : (
|
||||||
<Typography variant="h4" color="primary">
|
<Typography variant="h4" color="primary">
|
||||||
${item.price.toFixed(2)}
|
€{item.price.toFixed(2)}
|
||||||
</Typography>
|
</Typography>
|
||||||
)}
|
)}
|
||||||
</Stack>
|
</Stack>
|
||||||
|
|||||||
Reference in New Issue
Block a user