Display flexible collections in the My Collections list

This commit is contained in:
Serkan Reis 2023-05-26 14:59:15 +03:00
parent 9534ad399e
commit 66bfd262f4

View File

@ -49,7 +49,7 @@ const CollectionList: NextPage = () => {
.then((contractType) => {
if (contractType?.includes('sg-base-minter')) {
setMyOneOfOneCollections((prevState) => [...prevState, collection])
} else if (contractType?.includes('sg-minter')) {
} else if (contractType?.includes('sg-minter') || contractType?.includes('flex')) {
setMyStandardCollections((prevState) => [...prevState, collection])
}
})