Add isLoading condition to showMoreButton

This commit is contained in:
Sam Becker 2024-02-12 00:28:08 -06:00
parent 2e0549c35e
commit 891d2257b4

View File

@ -77,6 +77,7 @@ export default function MoreComponents({
(indexInView ?? 0) >= components.length - 1;
const showMoreButton =
isLoading ||
!hasFinalIndexBeenReached ||
!areAllComponentsVisible;