Skip to content

Commit 8a9a74e

Browse files
committed
ESLint
1 parent 5a08270 commit 8a9a74e

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/DataGrid.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1037,7 +1037,6 @@ export function DataGrid<R, SR = unknown, K extends Key = Key>(props: DataGridPr
10371037
// Reset the positions if the current values are no longer valid. This can happen if a column or row is removed
10381038
if (selectedPosition.idx > maxColIdx || selectedPosition.rowIdx > maxRowIdx) {
10391039
setSelectedPosition({ idx: -1, rowIdx: minRowIdx - 1, mode: 'SELECT' });
1040-
// eslint-disable-next-line react-compiler/react-compiler
10411040
setDraggedOverRowIdx(undefined);
10421041
}
10431042

@@ -1165,7 +1164,6 @@ export function DataGrid<R, SR = unknown, K extends Key = Key>(props: DataGridPr
11651164
);
11661165
})}
11671166
<RowSelectionChangeContext value={selectRowLatest}>
1168-
{/* eslint-disable-next-line react-compiler/react-compiler */}
11691167
{getViewportRows()}
11701168
</RowSelectionChangeContext>
11711169
{bottomSummaryRows?.map((row, rowIdx) => {

0 commit comments

Comments
 (0)