fix: round 3 UI gaps - habit edit dialog, domain edit, empty states, domain name resolution

This commit is contained in:
2026-07-28 15:02:01 +00:00
parent a06d34264d
commit 9ddab4e5a5
6 changed files with 341 additions and 63 deletions
@@ -110,6 +110,14 @@ export function TasksListView() {
return <p className="text-muted-foreground">Loading tasks...</p>;
}
if (tasks.length === 0) {
return (
<div className="py-12 text-center">
<p className="text-muted-foreground">No tasks yet. Create your first task to get started!</p>
</div>
);
}
return (
<>
<ScrollArea className="w-full">