From 8bc63272cd06ab312c187863983e7fe0bf0db45a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20=C3=96hrlund?= Date: Tue, 7 Nov 2023 15:06:47 +0100 Subject: [PATCH] remove alchemy AIRDROPS filter from useOwnedNFTs something has changed in alchemy's api that causes this filter to remove a lot of non-spam NFTs --- garage/src/hooks/useNFTs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/garage/src/hooks/useNFTs.ts b/garage/src/hooks/useNFTs.ts index 78be79bb..8e448052 100644 --- a/garage/src/hooks/useNFTs.ts +++ b/garage/src/hooks/useNFTs.ts @@ -127,7 +127,7 @@ const fetchNftsForOwner = async ( pageSize, pageKey, omitMetadata: false, - excludeFilters: [NftFilters.SPAM, NftFilters.AIRDROPS], + excludeFilters: [NftFilters.SPAM], }; if (filter?.contracts) { options = { ...options, contractAddresses: filter.contracts };