diff --git a/src/app/pages/AccountDetailsPage/AccountNFTCollectionCard.tsx b/src/app/pages/AccountDetailsPage/AccountNFTCollectionCard.tsx index ba692fe903..b8c1ba6d77 100644 --- a/src/app/pages/AccountDetailsPage/AccountNFTCollectionCard.tsx +++ b/src/app/pages/AccountDetailsPage/AccountNFTCollectionCard.tsx @@ -84,6 +84,7 @@ export const AccountNFTCollectionCard: FC = ({ scope, add = ({ scope, add type AccountNFTCollectionProps = { inventory: EvmNft[] | undefined + isLoading: boolean isFetched: boolean isTotalCountClipped: boolean | undefined totalCount: number | undefined @@ -110,6 +112,7 @@ type AccountNFTCollectionProps = { const AccountNFTCollection: FC = ({ inventory, + isLoading, isFetched, isTotalCountClipped, pagination, @@ -120,6 +123,7 @@ const AccountNFTCollection: FC = ({ return ( <> + {isLoading && } {isFetched && !totalCount && } {!!inventory?.length && ( <>