Describe the bug
Table ignores styling with MuiThemeProvider on @material-ui/[email protected].
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Theme from MuiThemeProvider should be applied.
Screenshots
It can be checked out in the docs example
I will upgrade it to MT 4.0 asap.
Upgraded with version 1.37.0
With [email protected]
I'm using @material-ui/styles/ThemeProvider instead of @material-ui/core/styles/MuiThemeProvider. This is my theme configuration:
import { createMuiTheme, responsiveFontSizes } from '@material-ui/core/styles'
import blue from '@material-ui/core/colors/blue'
import { ThemeProvider } from '@material-ui/styles'
const theme = responsiveFontSizes(createMuiTheme({
palette: {
type: 'dark',
primary: blue
}
}))
But the table renders like this:

@Neko250
It's looks like you have several instances of mui styles.
Try to reinstall node_modules or just run npm dedupe (see duplicated module in node_modules).
@Neko250
It's looks like you have several instances of mui styles.
Try to reinstall node_modules or just runnpm dedupe(see duplicated module in node_modules).
It worked, thank you ! :tada:
@material-ui/[email protected], same problem. Who know how to solve this guys?
Most helpful comment
I will upgrade it to MT 4.0 asap.