Linter fix post merge conflicts

This commit is contained in:
Charles Bochet
2024-07-19 15:20:25 +02:00
parent 7e80cd5366
commit d488b7f80f

View File

@ -28,7 +28,6 @@ export const RecordTableBodyEffect = () => {
setRecordTableData,
loading,
queryStateIdentifier,
cursorsByRecordId,
} = useLoadRecordIndexTable(objectNameSingular);
const isFetchingMoreObjects = useRecoilValue(
@ -122,7 +121,7 @@ export const RecordTableBodyEffect = () => {
if (!loading) {
setRecordTableData(records, totalCount);
}
}, [records, totalCount, setRecordTableData, loading, cursorsByRecordId]);
}, [records, totalCount, setRecordTableData, loading]);
const fetchMoreDebouncedIfRequested = useDebouncedCallback(async () => {
// We are debouncing here to give the user some room to scroll if they want to within this throttle window