Skip to content

Commit

Permalink
remove alchemy AIRDROPS filter from useOwnedNFTs
Browse files Browse the repository at this point in the history
something has changed in alchemy's api that causes this filter to remove
a lot of non-spam NFTs
  • Loading branch information
datadanne committed Nov 7, 2023
1 parent 8ba0b0e commit 8bc6327
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion garage/src/hooks/useNFTs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 };
Expand Down

0 comments on commit 8bc6327

Please sign in to comment.