File tree 2 files changed +1
-3
lines changed
2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import Cell from '../Cell';
4
4
import { responseImmutable } from '../context/TableContext' ;
5
5
import devRenderTimes from '../hooks/useRenderTimes' ;
6
6
import useRowInfo from '../hooks/useRowInfo' ;
7
- import type { ColumnType , CustomizeComponent , GetRowKey } from '../interface' ;
7
+ import type { ColumnType , CustomizeComponent } from '../interface' ;
8
8
import ExpandedRow from './ExpandedRow' ;
9
9
import { computedExpandedClassName } from '../utils/expandUtil' ;
10
10
@@ -19,7 +19,6 @@ export interface BodyRowProps<RecordType> {
19
19
scopeCellComponent : CustomizeComponent ;
20
20
indent ?: number ;
21
21
rowKey : React . Key ;
22
- getRowKey : GetRowKey < RecordType > ;
23
22
}
24
23
25
24
// ==================================================================================
Original file line number Diff line number Diff line change @@ -73,7 +73,6 @@ function Body<RecordType>(props: BodyProps<RecordType>) {
73
73
rowComponent = { trComponent }
74
74
cellComponent = { tdComponent }
75
75
scopeCellComponent = { thComponent }
76
- getRowKey = { getRowKey }
77
76
indent = { indent }
78
77
/>
79
78
) ;
You can’t perform that action at this time.
0 commit comments