Skip to content

Commit

Permalink
docs(guides/disabling-queries): typo (TanStack#7132)
Browse files Browse the repository at this point in the history
* fix(guides/disabling-queries): typo

* fix(guides/disabling-queries): another typo
  • Loading branch information
jjangga0214 authored Mar 18, 2024
1 parent cecd720 commit 8d5ce72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/framework/react/guides/disabling-queries.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function Todos() {
<div>
// 🚀 applying the filter will enable and execute the query
<FiltersForm onApply={setFilter} />
{data && <TodosTable data={data}} />
{data && <TodosTable data={data} />}
</div>
)
}
Expand Down Expand Up @@ -117,7 +117,7 @@ function Todos() {
<div>
// 🚀 applying the filter will enable and execute the query
<FiltersForm onApply={setFilter} />
{data && <TodosTable data={data}} />
{data && <TodosTable data={data} />}
</div>
)
}
Expand Down

0 comments on commit 8d5ce72

Please sign in to comment.