Commit aa3225c2 authored by Charles Bachmeier's avatar Charles Bachmeier Committed by GitHub

feat: show 1155s in collection filter (#5498)

* show 1155s in collection filter

* continue to hide shared contract collections
Co-authored-by: default avatarCharles Bachmeier <charlie@genie.xyz>
parent 35d66f1e
......@@ -14,10 +14,7 @@ export const OSCollectionsFetcher = async ({ params }: any): Promise<WalletColle
const walletCollections = await r.json()
if (walletCollections) {
return walletCollections
.filter(
(collection: any) =>
collection.primary_asset_contracts.length && collection.primary_asset_contracts[0].schema_name === 'ERC721'
)
.filter((collection: any) => collection.primary_asset_contracts.length)
.map((collection: any) => ({
address: collection.primary_asset_contracts[0].address,
name: collection.name,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment