diff --git a/src/components/Table/Table.tsx b/src/components/Table/Table.tsx index d3cbc0a6..99fccb45 100644 --- a/src/components/Table/Table.tsx +++ b/src/components/Table/Table.tsx @@ -249,7 +249,6 @@ export default function TableComponent() { const fetchMoreOnBottomReached = useThrottledCallback( (containerElement?: HTMLDivElement | null) => { - console.log("fetchMoreOnBottomReached", containerElement); if (!containerElement) return; const { scrollHeight, scrollTop, clientHeight } = containerElement; @@ -263,7 +262,7 @@ export default function TableComponent() { return (
fetchMoreOnBottomReached(e.target as HTMLDivElement)} + onScroll={(e) => fetchMoreOnBottomReached(e.target as HTMLDivElement)} style={{ overflow: "auto", width: "100%", height: "100%" }} >
+ {paddingLeft > 0 && (
{isSelectedCell ? "f" : "x"} - + */} ); })}