Skip to content

Commit 8b3c153

Browse files
committed
Remove defaultProps from internal DataTable.
1 parent 6af9973 commit 8b3c153

File tree

1 file changed

+1
-2
lines changed
  • components/dash-table/src/dash-table/dash/fragments

1 file changed

+1
-2
lines changed

components/dash-table/src/dash-table/dash/fragments/DataTable.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import genRandomId from 'dash-table/utils/generate';
66
import isValidProps from '../validate';
77
import Sanitizer from '../Sanitizer';
88

9-
import {propTypes, defaultProps} from '../DataTable';
9+
import {propTypes} from '../DataTable';
1010

1111
const DataTable = props => {
1212
const ctx = window.dash_component_api.useDashContext();
@@ -31,7 +31,6 @@ const DataTable = props => {
3131
);
3232
};
3333

34-
DataTable.defaultProps = defaultProps;
3534
DataTable.propTypes = propTypes;
3635

3736
export default DataTable;

0 commit comments

Comments
 (0)