diff --git a/VERSION b/VERSION
index 1cce0ea..e91aadb 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-6.18.8
+6.18.9
diff --git a/play-life-web/package.json b/play-life-web/package.json
index b8676bd..486453d 100644
--- a/play-life-web/package.json
+++ b/play-life-web/package.json
@@ -1,6 +1,6 @@
{
"name": "play-life-web",
- "version": "6.18.8",
+ "version": "6.18.9",
"type": "module",
"scripts": {
"dev": "vite",
diff --git a/play-life-web/src/components/TaskList.jsx b/play-life-web/src/components/TaskList.jsx
index 6a3f9ee..fb88c8c 100644
--- a/play-life-web/src/components/TaskList.jsx
+++ b/play-life-web/src/components/TaskList.jsx
@@ -926,8 +926,8 @@ function TaskList({ onNavigate, data, loading, backgroundLoading, error, onRetry
{hasSubtasks && (
{task.draft_subtasks_count != null && task.draft_subtasks_count > 0
- ? <>({task.draft_subtasks_count}/{task.subtasks_count})>
- : `(${task.subtasks_count})`}
+ ? <>{task.draft_subtasks_count}/{task.subtasks_count}>
+ : `${task.subtasks_count}`}
)}