You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems like putting <noscript> at the very end of the <body> tag makes React think it's missing. So React warns and compensates by adding another one.
This looks like a bug to me. Another (but different) issue about noscript: #10993.
The text was updated successfully, but these errors were encountered:
I don’t actually think this is a bug now. It was caused by the <script> running before <noscript> because we’re mounting into the document in that SSR fixture. It seems like if you render right into document then <script> that does the hydration should go last.
I could also work around it by delaying rendering:
It seems like putting
<noscript>
at the very end of the<body>
tag makes React think it's missing. So React warns and compensates by adding another one.This looks like a bug to me. Another (but different) issue about
noscript
: #10993.The text was updated successfully, but these errors were encountered: