fix TS build: prefix unused destructured props with underscore
Made-with: Cursor
This commit is contained in:
parent
66708d6743
commit
2509fbdcf2
1 changed files with 2 additions and 2 deletions
|
|
@ -1459,7 +1459,7 @@ interface _ParentGroupViewProps {
|
|||
}
|
||||
|
||||
const _ParentGroupView: React.FC<_ParentGroupViewProps> = ({
|
||||
featureNode, parentTable, label, expanded, loading, records, childTables, allTables,
|
||||
featureNode, parentTable: _parentTable, label, expanded, loading, records, childTables, allTables,
|
||||
onToggleGroup, onToggleRecord, onAddRecord, isRecordAdded, addingParentKey,
|
||||
}) => {
|
||||
const [hovered, setHovered] = useState(false);
|
||||
|
|
@ -1534,7 +1534,7 @@ interface _ParentRecordRowProps {
|
|||
}
|
||||
|
||||
const _ParentRecordRow: React.FC<_ParentRecordRowProps> = ({
|
||||
featureNode, record, childTables, allTables,
|
||||
featureNode: _featureNode, record, childTables, allTables: _allTables,
|
||||
onToggle, onAdd, isAdded, isAdding,
|
||||
}) => {
|
||||
const [hovered, setHovered] = useState(false);
|
||||
|
|
|
|||
Loading…
Reference in a new issue