Skip to content

Commit b5d3a9c

Browse files
chore(docs): Typo in 4.19 release notes (#36176)
1 parent ff0a664 commit b5d3a9c

File tree

1 file changed

+1
-1
lines changed
  • docs/docs/reference/release-notes/v4.19

1 file changed

+1
-1
lines changed

docs/docs/reference/release-notes/v4.19/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The `Head` function has to return valid JSX which also means that you can use Re
4444

4545
One thing to note is that every page that need to add some tags to document head needs to export or re-export a Head function. You may only do a re-export if the new page needs to have same tags as the previous.
4646

47-
One important difference between Gatsby Head API and solutions like `react-helmet` is that (at the moment) you loose the ability to define global defaults (e.g. in a layout component) and have them automatically applied everywhere. With Gatsby Head API your pages have to export a `Head` function to define meta tags for this specific page. To help with that you can use an SEO component or re-export the `Head` function from somewhere else:
47+
One important difference between Gatsby Head API and solutions like `react-helmet` is that (at the moment) you lose the ability to define global defaults (e.g. in a layout component) and have them automatically applied everywhere. With Gatsby Head API your pages have to export a `Head` function to define meta tags for this specific page. To help with that you can use an SEO component or re-export the `Head` function from somewhere else:
4848

4949
```jsx:title=src/pages/index.jsx
5050
import * as React from "react"

0 commit comments

Comments
 (0)