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
  • Loading branch information
jonniebigodes authored Jun 30, 2023
2 parents 7375f7a + 3c8c145 commit 6742930
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 6742930

Please sign in to comment.