Skip to content

Commit

Permalink
Fix a misplaced semicolon (#9498)
Browse files Browse the repository at this point in the history
Co-authored-by: JV <jvajda@apollographql.com>
  • Loading branch information
mlocher and jpvajda authored May 11, 2022
1 parent 18b57d4 commit 293af71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/api/link/persisted-queries.md
Original file line number Diff line number Diff line change
Expand Up @@ -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),
});
```

Expand Down

0 comments on commit 293af71

Please sign in to comment.