Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gilgardosh committed May 31, 2023
1 parent feb50ce commit 260eece
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/src/pages/docs/guides/react-vue.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ Then write type-safe code like the following:

```ts filename="Application Code"
import { useGraphQL } from './use-graphql.js'
import { gql } from './generated/grahql.js'
import { gql } from './generated/graphql.js'

const allFilmsWithVariablesQueryDocument = gql(/* GraphQL */ `
query allFilmsWithVariablesQuery($first: Int!) {
Expand Down Expand Up @@ -633,7 +633,7 @@ Then write type-safe code like the following:

```ts filename="Application Code"
import { useGraphQL } from './use-graphql.js'
import { gql } from './generated/grahql.js'
import { gql } from './generated/graphql.js'

const allFilmsWithVariablesQueryDocument = gql(/* GraphQL */ `
query allFilmsWithVariablesQuery($first: Int!) {
Expand Down

0 comments on commit 260eece

Please sign in to comment.