Skip to content

Commit

Permalink
remove exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
AkshatJawne committed Aug 22, 2024
1 parent 7d8fc95 commit 68a4148
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions packages/iris-grid/src/IrisGridModelUpdater.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,7 @@ function IrisGridModelUpdater({
model.rollupConfig = rollupConfig;
}
},
// eslint-disable-next-line react-hooks/exhaustive-deps
[model, model.isRollupAvailable, rollupConfig]
[model, rollupConfig]
);
useOnChange(
function updateSelectDistinctColumns() {
Expand All @@ -160,8 +159,7 @@ function IrisGridModelUpdater({
model.totalsConfig = totalsConfig;
}
},
// eslint-disable-next-line react-hooks/exhaustive-deps
[model, model.isTotalsAvailable, totalsConfig]
[model, totalsConfig]
);
useOnChange(
function updatePendingRowCount() {
Expand Down

0 comments on commit 68a4148

Please sign in to comment.