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
staylor/react-helmet-async#32 I have the problem described above and it's indicated as happening in react-async-component.
Any suggestions?
The text was updated successfully, but these errors were encountered:
@mschipperheyn How did you end up fixing this? Running into the same thing..
Sorry, something went wrong.
I did not yet.
@ctrlplusb did you have a look here yet? staylor/react-helmet-async#32
You are likely missing the HelmetProvider, which is required. Did you wrap your App component with HelmetProvider? Here's an example:
HelmetProvider
App
import { StrictMode } from 'react'; import { createRoot } from 'react-dom/client'; import { BrowserRouter as Router } from 'react-router'; import { HelmetProvider } from 'react-helmet-async'; import App from './App.tsx'; import './index.css'; createRoot(document.getElementById('root')!).render( <StrictMode> <Router> <HelmetProvider> <App /> </HelmetProvider> </Router> </StrictMode> );
No branches or pull requests
staylor/react-helmet-async#32
I have the problem described above and it's indicated as happening in react-async-component.
Any suggestions?
The text was updated successfully, but these errors were encountered: