Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

(docs) - Fix heading anchor links (#767)

authored by

Will Golledge and committed by
GitHub
3df0c5f0 d2c78bfa

+3 -3
+1 -1
docs/basics/mutations.md
··· 15 15 16 16 Both libraries offer a `useMutation` hook and a `Mutation` component. The latter accepts the same 17 17 parameters but we won't cover it in this guide. [Look it up in the API docs if you prefer 18 - render-props components.](../api/urql.md#components) 18 + render-props components.](../api/urql.md#mutation-component) 19 19 20 20 ### Sending a mutation 21 21
+1 -1
docs/basics/queries.md
··· 14 14 15 15 Both libraries offer a `useQuery` hook and a `Query` component. The latter accepts the same 16 16 parameters but we won't cover it in this guide. [Look it up in the API docs if you prefer 17 - render-props components.](../api/urql.md#components) 17 + render-props components.](../api/urql.md#query-component) 18 18 19 19 ### Run a first query 20 20
+1 -1
packages/site/src/components/scroll-to-top.js
··· 4 4 5 5 const parsePathname = pathname => { 6 6 const match = pathname && pathname.match(/#[a-z|-]+/); 7 - return match && match[1]; 7 + return match && match[0]; 8 8 }; 9 9 10 10 export const ScrollToTop = () => {