diff --git a/play-life-web/src/components/PurchaseScreen.jsx b/play-life-web/src/components/PurchaseScreen.jsx index 22f9b5f..5a2d527 100644 --- a/play-life-web/src/components/PurchaseScreen.jsx +++ b/play-life-web/src/components/PurchaseScreen.jsx @@ -387,7 +387,7 @@ function PurchaseScreen({ onNavigate, purchaseConfigId, taskId, taskName }) {
{item.name} {item.estimated_remaining > 0 && ( - + ({Math.round(item.estimated_remaining * 10) / 10}) )} diff --git a/play-life-web/src/components/ShoppingList.jsx b/play-life-web/src/components/ShoppingList.jsx index 2559b05..cf13e62 100644 --- a/play-life-web/src/components/ShoppingList.jsx +++ b/play-life-web/src/components/ShoppingList.jsx @@ -729,7 +729,7 @@ function ShoppingList({ onNavigate, refreshTrigger = 0, isActive = false, initia
{item.name} {item.estimated_remaining > 0 && ( - + ({Math.round(item.estimated_remaining * 10) / 10}) )} @@ -800,7 +800,7 @@ function ShoppingList({ onNavigate, refreshTrigger = 0, isActive = false, initia
{item.name} {item.estimated_remaining > 0 && ( - + ({Math.round(item.estimated_remaining * 10) / 10}) )}