diff --git a/docs/source/api/link/persisted-queries.md b/docs/source/api/link/persisted-queries.md index 4ed8e3f4266..97309fc9805 100644 --- a/docs/source/api/link/persisted-queries.md +++ b/docs/source/api/link/persisted-queries.md @@ -46,7 +46,7 @@ const httpLink = new HttpLink({ uri: "/graphql" }); const persistedQueriesLink = createPersistedQueryLink({ sha256 }); const client = new ApolloClient({ cache: new InMemoryCache(), - link: persistedQueriesLink.concat(httpLink); + link: persistedQueriesLink.concat(httpLink), }); ```