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 c4e86df commit bf5eb29Copy full SHA for bf5eb29
src/components/PinnedTodoList.tsx
@@ -35,9 +35,7 @@ export const PinnedTodoList: React.FC<PinnedTodoListProps> = ({ workspaceId }) =
35
36
// When idle (not streaming), only show completed todos for clean summary
37
// When streaming, show all todos so user can see active work
38
- const displayTodos = canInterrupt
39
- ? todos
40
- : todos.filter((todo) => todo.status === "completed");
+ const displayTodos = canInterrupt ? todos : todos.filter((todo) => todo.status === "completed");
41
42
if (displayTodos.length === 0) {
43
return null;
0 commit comments