Skip to content

Commit 31f2082

Browse files
committed
chore(AnalyticalTable): fix type
1 parent fc05ab6 commit 31f2082

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/main/src/components/AnalyticalTable/TableBody/VirtualTableBodyContainer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { enrichEventWithDetails } from '@ui5/webcomponents-react-base';
22
import type { MutableRefObject } from 'react';
33
import { useCallback, useEffect, useRef, useState } from 'react';
4-
import type { AnalyticalTablePropTypes, TableInstance } from '../types/index.js';
4+
import type { AnalyticalTablePropTypes } from '../types/index.js';
55

66
interface VirtualTableBodyContainerProps {
77
tableBodyHeight: number;
@@ -12,7 +12,7 @@ interface VirtualTableBodyContainerProps {
1212
infiniteScroll?: AnalyticalTablePropTypes['infiniteScroll'];
1313
infiniteScrollThreshold?: AnalyticalTablePropTypes['infiniteScrollThreshold'];
1414
onLoadMore: AnalyticalTablePropTypes['onLoadMore'];
15-
rows: TableInstance['rows'];
15+
rows: Record<string, any>[];
1616
internalRowHeight: number;
1717
handleExternalScroll: AnalyticalTablePropTypes['onTableScroll'];
1818
visibleRows: number;

0 commit comments

Comments
 (0)