diff --git a/VERSION b/VERSION
index 41ce415..aec9b10 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-6.25.1
+6.25.2
diff --git a/play-life-web/package.json b/play-life-web/package.json
index 9b1e61f..83e276c 100644
--- a/play-life-web/package.json
+++ b/play-life-web/package.json
@@ -1,6 +1,6 @@
{
"name": "play-life-web",
- "version": "6.25.1",
+ "version": "6.25.2",
"type": "module",
"scripts": {
"dev": "vite",
diff --git a/play-life-web/src/components/BoardSelector.css b/play-life-web/src/components/BoardSelector.css
index e3033c8..017a165 100644
--- a/play-life-web/src/components/BoardSelector.css
+++ b/play-life-web/src/components/BoardSelector.css
@@ -67,6 +67,7 @@
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
+ line-height: 1;
}
.board-label-archived {
diff --git a/play-life-web/src/components/PurchaseScreen.jsx b/play-life-web/src/components/PurchaseScreen.jsx
index 0be3db4..22f9b5f 100644
--- a/play-life-web/src/components/PurchaseScreen.jsx
+++ b/play-life-web/src/components/PurchaseScreen.jsx
@@ -388,7 +388,7 @@ function PurchaseScreen({ onNavigate, purchaseConfigId, taskId, taskName }) {
{item.name}
{item.estimated_remaining > 0 && (
- ~{Math.round(item.estimated_remaining * 10) / 10}
+ ({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 4901cdc..2559b05 100644
--- a/play-life-web/src/components/ShoppingList.jsx
+++ b/play-life-web/src/components/ShoppingList.jsx
@@ -730,7 +730,7 @@ function ShoppingList({ onNavigate, refreshTrigger = 0, isActive = false, initia
{item.name}
{item.estimated_remaining > 0 && (
- ~{Math.round(item.estimated_remaining * 10) / 10}
+ ({Math.round(item.estimated_remaining * 10) / 10})
)}
@@ -801,7 +801,7 @@ function ShoppingList({ onNavigate, refreshTrigger = 0, isActive = false, initia
{item.name}
{item.estimated_remaining > 0 && (
- ~{Math.round(item.estimated_remaining * 10) / 10}
+ ({Math.round(item.estimated_remaining * 10) / 10})
)}