diff --git a/components/collections/creation/CollectionDetails.tsx b/components/collections/creation/CollectionDetails.tsx index 2a9303a..17dd8b7 100644 --- a/components/collections/creation/CollectionDetails.tsx +++ b/components/collections/creation/CollectionDetails.tsx @@ -144,15 +144,93 @@ export const CollectionDetails = ({ onChange, uploadMethod, coverImageUrl, minte
- - - setTimestamp(date)} value={timestamp} /> - + + {/* Currently trading starts immediately for 1/1 Collections */} + + + setTimestamp(date)} value={timestamp} /> + + + +
+
+
+ + Does the collection contain explicit content? + +
+ { + setExplicit(true) + }} + type="radio" + /> + +
+
+ { + setExplicit(false) + }} + type="radio" + /> + +
+
+
+
+ 0}> + + + ℹ️ When enabled, the metadata for tokens can be updated after the collection is created until + the collection is frozen by the creator. + +
+ } + placement="bottom" + > +
+ +
+ + + @@ -200,82 +278,84 @@ export const CollectionDetails = ({ onChange, uploadMethod, coverImageUrl, minte Waiting for cover image URL to be specified. )} -
-
-
- - Does the collection contain explicit content? - -
- { - setExplicit(true) - }} - type="radio" - /> - -
-
- { - setExplicit(false) - }} - type="radio" - /> - + +
+
+
+ + Does the collection contain explicit content? + +
+ { + setExplicit(true) + }} + type="radio" + /> + +
+
+ { + setExplicit(false) + }} + type="radio" + /> + +
-
- 0}> - - - ℹ️ When enabled, the metadata for tokens can be updated after the collection is created until the - collection is frozen by the creator. - -
- } - placement="bottom" - > -
0}> + + + ℹ️ When enabled, the metadata for tokens can be updated after the collection is created until the + collection is frozen by the creator. + +
+ } + placement="bottom" > - -
- +
+ +
+ +
diff --git a/pages/collections/create.tsx b/pages/collections/create.tsx index 6534d8a..17fa17f 100644 --- a/pages/collections/create.tsx +++ b/pages/collections/create.tsx @@ -504,7 +504,7 @@ const CollectionCreationPage: NextPage = () => { external_link: collectionDetails?.externalLink, explicit_content: collectionDetails?.explicit, royalty_info: royaltyInfo, - start_trading_time: collectionDetails?.startTradingTime || null, + start_trading_time: null, //collectionDetails?.startTradingTime || null, }, }, },