feat: move add collectible card, closes #3762

This commit is contained in:
alter-eggo
2023-05-28 15:32:04 +04:00
committed by Anastasios
parent fc28749a71
commit c91aba6635

View File

@@ -39,12 +39,16 @@ export function Collectibles() {
isLoadingMore={isLoadingMore}
onRefresh={() => void queryClient.refetchQueries({ type: 'active' })}
>
{whenWallet({
software: <AddCollectible />,
ledger: null,
})}
{isNftMetadataEnabled ? <StacksCryptoAssets /> : null}
{whenWallet({
software: (
<>
<AddCollectible />
<Stamps />
<Ordinals setIsLoadingMore={setIsLoadingMore} />
</>