Skip to content

Commit

Permalink
Merge pull request #23258 from wise-introvert/patch-1
Browse files Browse the repository at this point in the history
docs(snippets/document-screen): fix typo

(cherry picked from commit 6742930)
  • Loading branch information
jonniebigodes authored and github-actions[bot] committed Jul 2, 2023
1 parent a6fd049 commit 82da607
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/snippets/react/document-screen-with-graphql.ts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ interface Data {
}

function useFetchInfo() {
const { loading, error, data } = useQueryuseQuery<Data>(AllInfoQuery);
const { loading, error, data } = useQuery<Data>(AllInfoQuery);

return { loading, error, data };
}
Expand Down

0 comments on commit 82da607

Please sign in to comment.