diff --git a/pages/collections/myCollections.tsx b/pages/collections/myCollections.tsx index 7211d7d..46dc5da 100644 --- a/pages/collections/myCollections.tsx +++ b/pages/collections/myCollections.tsx @@ -85,7 +85,9 @@ const CollectionList: NextPage = () => {
{myStandardCollections.length > 0 && (
- Standard Collections + + Standard Collections + @@ -98,7 +100,7 @@ const CollectionList: NextPage = () => { {myStandardCollections.map((collection: any, index: any) => { return ( - -
+
@@ -115,12 +117,16 @@ const CollectionList: NextPage = () => {
-

{collection.name}

-

{collection.description}

+

+ {collection.name} +

+

+ {collection.description} +

+
Minter: @@ -188,7 +194,9 @@ const CollectionList: NextPage = () => { )} {myOneOfOneCollections.length > 0 && (
- 1/1 Collections + + 1/1 Collections + @@ -201,7 +209,7 @@ const CollectionList: NextPage = () => { {myOneOfOneCollections.map((collection: any, index: any) => { return ( - -
+
@@ -218,12 +226,16 @@ const CollectionList: NextPage = () => {
-

{collection.name}

-

{collection.description}

+

+ {collection.name} +

+

+ {collection.description} +

+
Minter: