From f0acd9d236501aa3e447189cf61a4490e0d8f296 Mon Sep 17 00:00:00 2001 From: FlorianSpeicher Date: Sat, 3 May 2025 20:00:14 +0200 Subject: [PATCH] Changed price to Euro. --- 01-frontend/src/pages/Product.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/01-frontend/src/pages/Product.tsx b/01-frontend/src/pages/Product.tsx index aabd3ed..e4661ac 100644 --- a/01-frontend/src/pages/Product.tsx +++ b/01-frontend/src/pages/Product.tsx @@ -70,7 +70,7 @@ export default function Product() { {item.discount > 0 ? ( <> - ${discountedPrice.toFixed(2)} + €{discountedPrice.toFixed(2)} ) : ( - ${item.price.toFixed(2)} + €{item.price.toFixed(2)} )}