-
Notifications
You must be signed in to change notification settings - Fork 933
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Warning: Failed prop type: Material-UI: you are using a deprecated typography variant: subheading
that will be removed in the next major release.
#354
Comments
It'll be done tonight |
Duplicate of: #333 |
FYI, Material UI is preparing a version V4 with removal of deprecated behaviour. |
This issue has been resolved in beta-53. Please let me know if there are any further problems |
Still receiving this issue in 2.0.0-beta-53: Code in question: getMuiTheme = () => createMuiTheme({
overrides: {
//@ts-ignore
MUIDataTableBodyCell: {
root: {
padding: "4px"
}
},
MUIDataTableHeadCell: {
root: {
padding: "4px"
}
}
}
})
render() {
return (
<>
<MuiThemeProvider theme={this.getMuiTheme()}>
<MUIDataTable
title={"DataTable Demo"}
data={randomData}
columns={muiDataTableColumns}
options={options}
/>
</MuiThemeProvider>
</>
);
} |
@foxmicha Can you provide your environment information? mui ver, etc |
material-ui/core: 3.7.1 |
Please upgrade material-ui typography variant to latest version.
Thanks :)
The text was updated successfully, but these errors were encountered: