We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c88d560 commit f75befaCopy full SHA for f75befa
src/components/PinnedTodoList.tsx
@@ -33,8 +33,11 @@ export const PinnedTodoList: React.FC<PinnedTodoListProps> = ({ workspaceId }) =
33
() => workspaceStore.getWorkspaceState(workspaceId).canInterrupt
34
);
35
36
- // Filter completed todos while streaming
37
- const displayTodos = canInterrupt ? todos.filter((todo) => todo.status !== "completed") : todos;
+ // When idle (not streaming), only show completed todos for clean summary
+ // When streaming, show all todos so user can see active work
38
+ const displayTodos = canInterrupt
39
+ ? todos
40
+ : todos.filter((todo) => todo.status === "completed");
41
42
if (displayTodos.length === 0) {
43
return null;
0 commit comments