Skip to content

Commit

Permalink
docs: Update suspense.mdx (#11998)
Browse files Browse the repository at this point in the history
  • Loading branch information
harishkrishnan24 authored Aug 9, 2024
1 parent c6e8182 commit 717421c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/data/suspense.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ const preloadedQueryRef = preloadQuery(GET_DOGS_QUERY);

function App() {
const { data } = useReadQuery(preloadedQueryRef);
const [queryRef, loadDog] = useLoadableQuery(GET_DOG_QUERY)
const [loadDog, queryRef] = useLoadableQuery(GET_DOG_QUERY)

return (
<>
Expand Down

0 comments on commit 717421c

Please sign in to comment.