Skip to content

Commit

Permalink
remove unused theme prop
Browse files Browse the repository at this point in the history
  • Loading branch information
joshleblanc committed Sep 25, 2019
1 parent afa3514 commit aeff4fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/MUIDataTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -1214,7 +1214,7 @@ class MUIDataTable extends React.Component {
}

render() {
const { classes, theme, className, title } = this.props;
const { classes, className, title } = this.props;
const {
announceText,
activeColumn,
Expand Down Expand Up @@ -1354,4 +1354,4 @@ class MUIDataTable extends React.Component {
}
}

export default withStyles(defaultTableStyles, { name: 'MUIDataTable', withTheme: true })(MUIDataTable);
export default withStyles(defaultTableStyles, { name: 'MUIDataTable' })(MUIDataTable);

0 comments on commit aeff4fd

Please sign in to comment.