From 3acc4c3f5d7612b777cf04e2a5702b3f6915b49e Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 17 Apr 2026 16:27:18 +0000 Subject: [PATCH] fix(empty-state): replace misleading hint with an actual create button MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The no-lists empty state said 'Tap the list name above to create one' — but there is no list name above, just a static 'Tasks' label. The actual affordance (+ New list) lives in the drawer, which may not be open. Add a primary-button shortcut that opens the drawer and puts focus in the new-list input in one click. Google Tasks workspaces are read-only so they still get the explanatory text instead. --- apps/tauri/src/lib/screens/TasksScreen.svelte | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/apps/tauri/src/lib/screens/TasksScreen.svelte b/apps/tauri/src/lib/screens/TasksScreen.svelte index 54b9a5c..3e03d93 100644 --- a/apps/tauri/src/lib/screens/TasksScreen.svelte +++ b/apps/tauri/src/lib/screens/TasksScreen.svelte @@ -657,7 +657,16 @@ {#if app.lists.length === 0}

No lists yet

-

Tap the list name above to create one

+ {#if app.isGoogleTasks} +

Lists will appear after your next sync.

+ {:else} + + {/if}
{:else if !app.activeListId}