Skip to content

Commit

Permalink
Update docs/src/pages/guides/migrating-to-react-query-4.md
Browse files Browse the repository at this point in the history
  • Loading branch information
TkDodo authored Feb 9, 2022
1 parent fec2881 commit 5a666ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/pages/guides/migrating-to-react-query-4.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ Further, it is an easy bug to produce `Promise<void>` by adding logging in the q
```js
useQuery(
['key'],
() => axios.get(url).then(result => console.log(result.data)
() => axios.get(url).then(result => console.log(result.data))
)
```

Expand Down

0 comments on commit 5a666ba

Please sign in to comment.