diff --git a/src/components/Table/TableBody.tsx b/src/components/Table/TableBody.tsx
index 76a1d597..ae119011 100644
--- a/src/components/Table/TableBody.tsx
+++ b/src/components/Table/TableBody.tsx
@@ -4,11 +4,13 @@ import type { Column, Row } from "@tanstack/react-table";
import StyledRow from "./Styled/StyledRow";
import OutOfOrderIndicator from "./OutOfOrderIndicator";
import CellValidation from "./CellValidation";
+import { RowsSkeleton } from "./TableSkeleton";
import {
tableScope,
tableSchemaAtom,
selectedCellAtom,
+ tableNextPageAtom,
} from "@src/atoms/tableScope";
import { getFieldProp } from "@src/components/fields";
@@ -38,6 +40,7 @@ export default function TableBody({
}: ITableBodyProps) {
const [tableSchema] = useAtom(tableSchemaAtom, tableScope);
const [selectedCell] = useAtom(selectedCellAtom, tableScope);
+ const [tableNextPage] = useAtom(tableNextPageAtom, tableScope);
const {
virtualRows,
@@ -117,6 +120,8 @@ export default function TableBody({
);
})}
+ {tableNextPage.loading &&