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 10bdb08 commit d032247Copy full SHA for d032247
docs/framework/angular/guides/disabling-queries.md
@@ -85,7 +85,7 @@ export class TodosComponent {
85
86
todosQuery = injectQuery(() => ({
87
queryKey: ['todos', this.filter()],
88
- queryFn: this.filter ? () => fetchTodos(this.filter()) : skipToken,
+ queryFn: this.filter() ? () => fetchTodos(this.filter()) : skipToken,
89
}))
90
}
91
```
0 commit comments