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

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

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