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
{{ message }}
This repository has been archived by the owner on Sep 27, 2022. It is now read-only.
Even though custom emotion logic has been set up at the app root and its entry points, it is still rendering <style> tags into the document <body>, not the <head> where they belong. These notes by the official MUI maintainer (a very popular React UI library) give some more context to this notion. What's going wrong here?
The text was updated successfully, but these errors were encountered:
🙈 Fix `<style>` elements bleeding into the document `<body>`, a place where they [do not belong](mui/material-ui#26561 (comment))
ℹ️ Removed Remix/React control of the entire document to drastically simplify emotion logic. This also means the Remix `meta`/`link` features no longer work -> [react-helmet](https://github.com/nfl/react-helmet)
Closes#221
Even though custom emotion logic has been set up at the app root and its entry points, it is still rendering
<style>
tags into the document<body>
, not the<head>
where they belong. These notes by the official MUI maintainer (a very popular React UI library) give some more context to this notion. What's going wrong here?The text was updated successfully, but these errors were encountered: