const { data: tasks, error: taskError } = await supabase
.from("tasks")
.select(
`id, title, description, priority, due_by, is_completed, tags (title, id)`
);
const { data: tasks, error: taskError } = await supabase
.from("tasks")
.select(
`id, title, description, priority, due_by, is_completed, tags (title, id)`
);