We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using this:
<Helmet defaultTitle="React SSR Starter – TypeScript Edition" titleTemplate="%s – React SSR Starter – TypeScript Edition" > <link rel="icon" type="image/png" href={favicon} sizes="16x16" /> </Helmet>
This error occurs after a (short) while: nfl/react-helmet#373
Temporary workaround is to use the following until [email protected] stable is released:
<Helmet defaultTitle="React SSR Starter – TypeScript Edition" titleTemplate="%s – React SSR Starter – TypeScript Edition" link={[{ rel: 'icon', type: 'image/png', href: favicon }]} />
The text was updated successfully, but these errors were encountered:
Yeah man, it took me like 4 hours to find the fact that this is the issue after implementing hooks.
I converted the place where I add Helmet to a Class component for now to fix it! Hope they do an official release of version 6 soon.
Sorry, something went wrong.
No branches or pull requests
When using this:
This error occurs after a (short) while: nfl/react-helmet#373
Temporary workaround is to use the following until [email protected] stable is released:
The text was updated successfully, but these errors were encountered: