We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e98fe68 commit e8f61c5Copy full SHA for e8f61c5
1 file changed
src/lib/fragments/AgGrid.react.js
@@ -1459,18 +1459,6 @@ export function DashAgGrid(props) {
1459
};
1460
}, [props.getRowsResponse]);
1461
1462
- // ensure any stray timeout cleared on unmount (defensive)
1463
- useEffect(
1464
- () => () => {
1465
- if (resetTimeoutRef.current) {
1466
- clearTimeout(resetTimeoutRef.current);
1467
- resetTimeoutRef.current = null;
1468
- }
1469
- resettingCount.current = false;
1470
- },
1471
- []
1472
- );
1473
-
1474
// Handle master detail response
1475
useEffect(() => {
1476
if (
0 commit comments