feat: implement AI checkpoint and task suggestion UI with approval flow
This commit is contained in:
@@ -84,7 +84,9 @@ function TasksPage() {
|
||||
},
|
||||
});
|
||||
|
||||
const tasksList = filteredTasks ?? [];
|
||||
const tasksList = (filteredTasks ?? []).filter(
|
||||
(t) => !(t.isAiSuggested === 1 && t.isApproved === 0),
|
||||
);
|
||||
|
||||
// Compute stats from all tasks (unfiltered)
|
||||
const stats = useMemo(() => {
|
||||
|
||||
Reference in New Issue
Block a user