Call loadNextPage function only when it is required while loading the table.

This commit is contained in:
Khushboo Vashi
2024-07-22 14:15:03 +05:30
parent 9cbb9a3d24
commit 3aedae1436

View File

@@ -123,7 +123,7 @@ export function Table({ columns, data, hasSelectRow, schema, sortOptions, tableP
useInfiniteQuery({
queryKey: ['logs'],
queryFn: async () => {
const fetchedData = await loadNextPage();
const fetchedData = loadNextPage ? await loadNextPage() : [];
return fetchedData;
},
initialPageParam: 0,