Skip to content

Commit

Permalink
fix lint (#5304)
Browse files Browse the repository at this point in the history
  • Loading branch information
pieh authored May 6, 2018
1 parent 419c5f8 commit bb21d0f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/gatsby-plugin-manifest/src/gatsby-ssr.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ exports.onRenderBody = ({ setHeadComponents }, pluginOptions) => {
// If icons were generated, also add a favicon link.
if (pluginOptions.icon) {
setHeadComponents([
<link rel="shortcut icon" href="/icons/icon-48x48.png" />,
<link
key={`gatsby-plugin-manifest-icon-link`}
rel="shortcut icon"
href="/icons/icon-48x48.png"
/>,
])
}
setHeadComponents([
Expand Down

0 comments on commit bb21d0f

Please sign in to comment.