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
When using server rendering, putting an <img> in a <noscript> seems to invariably cause an invariant violation (it can't find the image).
I believe this is because, to the JS enabled browser, the noscript content looks like CDATA.
This can be worked around by using dangerouslySetInnerHTML to actually set the contents to an HTML string, however, you can't nest components with this approach.