commit 30f6bcb307a09d3c09303a59ac3e1720a35fa6f2
parent 5c9073586b8f3a29a7f24975e18b8f50ad6e32a2
Author: Michael Camilleri <[email protected]>
Date: Sat, 21 Mar 2026 04:24:27 +0900
Hide create instruction once row added
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ListlessiOS/Views/TaskListView.swift b/ListlessiOS/Views/TaskListView.swift
@@ -542,7 +542,7 @@ struct TaskListView: View, TaskListViewProtocol {
Color.outerBackground.ignoresSafeArea()
}
.overlay {
- if isCompletelyEmpty {
+ if isCompletelyEmpty && draftPlacement == nil {
Text("Pull down to create")
.font(TaskRowMetrics.hintSUI)
.foregroundStyle(.secondary)