Skip to content

Commit

Permalink
Merge branch 'feat/add-footer-prop-infinite' into alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
mguellsegarra committed Jul 17, 2024
2 parents 793e70f + b7480c9 commit 2629052
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/components/InfiniteTable/InfiniteTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -316,11 +316,7 @@ const InfiniteTableComp = forwardRef<InfiniteTableRef, InfiniteTableProps>(
blockLoadDebounceMillis={DEBOUNCE_TIME}
/>
</div>
{footer && (
<div style={{ height: footerHeight, backgroundColor: "red" }}>
{footer}
</div>
)}
{footer && <div style={{ height: footerHeight }}>{footer}</div>}
</div>
);
},
Expand Down

0 comments on commit 2629052

Please sign in to comment.