Skip to content

Commit 1700ddb

Browse files
authored
fix(starters): Upgrade react-helmet in default starter (#23059)
1 parent 623ad94 commit 1700ddb

File tree

3 files changed

+15
-24
lines changed

3 files changed

+15
-24
lines changed

starters/default/package-lock.json

Lines changed: 12 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

starters/default/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
"gatsby-image": "^2.3.1",
1010
"gatsby-plugin-manifest": "^2.3.3",
1111
"gatsby-plugin-offline": "^3.1.2",
12-
"gatsby-plugin-react-helmet": "^3.2.1",
12+
"gatsby-plugin-react-helmet": "^3.2.2",
1313
"gatsby-plugin-sharp": "^2.5.3",
1414
"gatsby-source-filesystem": "^2.2.2",
1515
"gatsby-transformer-sharp": "^2.4.3",
1616
"prop-types": "^15.7.2",
1717
"react": "^16.12.0",
1818
"react-dom": "^16.12.0",
19-
"react-helmet": "^5.2.1"
19+
"react-helmet": "^6.0.0"
2020
},
2121
"devDependencies": {
2222
"prettier": "2.0.4"

starters/default/src/components/seo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
import React from "react"
99
import PropTypes from "prop-types"
10-
import Helmet from "react-helmet"
10+
import { Helmet } from "react-helmet"
1111
import { useStaticQuery, graphql } from "gatsby"
1212

1313
function SEO({ description, lang, meta, title }) {

0 commit comments

Comments
 (0)