Skip to content

Commit 250dca4

Browse files
committed
fix for lint
1 parent 682bca3 commit 250dca4

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

src/lib/fragments/AgGrid.react.js

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -803,11 +803,7 @@ export function DashAgGrid(props) {
803803
}
804804
}
805805
}, 1);
806-
}, [
807-
gridApi,
808-
props.selectedRows,
809-
customSetProps,
810-
]);
806+
}, [gridApi, props.selectedRows, customSetProps]);
811807

812808
const isDatasourceLoadedForInfiniteScrolling = useCallback(() => {
813809
return (
@@ -1504,14 +1500,14 @@ export function DashAgGrid(props) {
15041500

15051501
// Handle row transactions
15061502
useEffect(() => {
1507-
if (gridApi && props.rowTransaction) {
1503+
if (gridApi && props.rowTransaction) {
15081504
rowTransaction(props.rowTransaction);
15091505
}
15101506
}, [props.rowTransaction, gridApi, prevGridApi, rowTransaction]);
15111507

15121508
// Handle column state updates
15131509
useEffect(() => {
1514-
if (gridApi ) {
1510+
if (gridApi) {
15151511
if (props.updateColumnState) {
15161512
updateColumnState();
15171513
} else if (columnState_push) {

0 commit comments

Comments
 (0)