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
By default a lot of components from Material-UI have tags <p> (paragraph).
It causes a lot of errors, because than we have inside lists (<ul>) and (<div>), but it is not allowed by html semantic.
So a lot of components should change the type from <p> to <div>, like that:
<Typography component='div'>
The text was updated successfully, but these errors were encountered:
I believe in some cases the Typography components can be removed all together and actually don't need to be used. Please carefully read and parse the code shared between parent/child components to decide the best way to change/clean the code.
By default a lot of components from Material-UI have tags <p> (paragraph).
It causes a lot of errors, because than we have inside lists (<ul>) and (<div>), but it is not allowed by html semantic.
So a lot of components should change the type from <p> to <div>, like that:
The text was updated successfully, but these errors were encountered: