Skip to content

Commit d488b7f

Browse files
committed
Linter fix post merge conflicts
1 parent 7e80cd5 commit d488b7f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/twenty-front/src/modules/object-record/record-table/record-table-body/components/RecordTableBodyEffect.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ export const RecordTableBodyEffect = () => {
2828
setRecordTableData,
2929
loading,
3030
queryStateIdentifier,
31-
cursorsByRecordId,
3231
} = useLoadRecordIndexTable(objectNameSingular);
3332

3433
const isFetchingMoreObjects = useRecoilValue(
@@ -122,7 +121,7 @@ export const RecordTableBodyEffect = () => {
122121
if (!loading) {
123122
setRecordTableData(records, totalCount);
124123
}
125-
}, [records, totalCount, setRecordTableData, loading, cursorsByRecordId]);
124+
}, [records, totalCount, setRecordTableData, loading]);
126125

127126
const fetchMoreDebouncedIfRequested = useDebouncedCallback(async () => {
128127
// We are debouncing here to give the user some room to scroll if they want to within this throttle window

0 commit comments

Comments
 (0)