diff --git a/VERSION b/VERSION
index fdc6698..cca25a9 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-4.4.0
+4.4.1
diff --git a/play-life-web/package.json b/play-life-web/package.json
index ce2dc84..1141105 100644
--- a/play-life-web/package.json
+++ b/play-life-web/package.json
@@ -1,6 +1,6 @@
{
"name": "play-life-web",
- "version": "4.4.0",
+ "version": "4.4.1",
"type": "module",
"scripts": {
"dev": "vite",
diff --git a/play-life-web/src/components/TaskList.css b/play-life-web/src/components/TaskList.css
index cb05b58..61fc64f 100644
--- a/play-life-web/src/components/TaskList.css
+++ b/play-life-web/src/components/TaskList.css
@@ -106,6 +106,16 @@
z-index: 1;
}
+.task-checkmark-wishlist-lightning-icon {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ color: #9ca3af;
+ pointer-events: none;
+ z-index: 1;
+}
+
.task-name-container {
flex: 1;
display: flex;
diff --git a/play-life-web/src/components/TaskList.jsx b/play-life-web/src/components/TaskList.jsx
index 16ee4b4..1665b2e 100644
--- a/play-life-web/src/components/TaskList.jsx
+++ b/play-life-web/src/components/TaskList.jsx
@@ -557,22 +557,35 @@ function TaskList({ onNavigate, data, loading, backgroundLoading, error, onRetry
) : isWishlist ? (
-
+ <>
+
+ {task.auto_complete && (
+
+ )}
+ >
) : (