diff --git a/components/collections/actions/actions.ts b/components/collections/actions/actions.ts index b1d592b..c459038 100644 --- a/components/collections/actions/actions.ts +++ b/components/collections/actions/actions.ts @@ -1,6 +1,4 @@ /* eslint-disable eslint-comments/disable-enable-pair */ -/* eslint-disable @typescript-eslint/no-unsafe-call */ -/* eslint-disable @typescript-eslint/no-unsafe-return */ import { useBaseMinterContract } from 'contracts/baseMinter' import type { CollectionInfo, SG721Instance } from 'contracts/sg721' @@ -48,8 +46,8 @@ export interface ActionListItem { export const BASE_ACTION_LIST: ActionListItem[] = [ { id: 'mint_token_uri', - name: 'Append New Token', - description: `Mint a new token and append it to the collection`, + name: 'Add New Token', + description: `Mint a new token and add it to the collection`, }, { id: 'update_start_trading_time', diff --git a/components/collections/creation/BaseMinterDetails.tsx b/components/collections/creation/BaseMinterDetails.tsx index 71d163e..0c1678e 100644 --- a/components/collections/creation/BaseMinterDetails.tsx +++ b/components/collections/creation/BaseMinterDetails.tsx @@ -177,7 +177,7 @@ export const BaseMinterDetails = ({ onChange, minterType }: BaseMinterDetailsPro className="inline-block py-1 px-2 text-gray peer-checked:text-white hover:text-white peer-checked:bg-black peer-checked:border-b-2 hover:border-b-2 peer-checked:border-plumbus hover:border-plumbus cursor-pointer form-check-label" htmlFor="inlineRadio6" > - Append a New Token to an Existing 1/1 Collection + Add a New Token to an Existing 1/1 Collection diff --git a/pages/collections/create.tsx b/pages/collections/create.tsx index c903d3a..861dc85 100644 --- a/pages/collections/create.tsx +++ b/pages/collections/create.tsx @@ -336,7 +336,7 @@ const CollectionCreationPage: NextPage = () => { return result }) .then((result) => { - toast.success(`Token(s) minted & appended to the collection successfully! Tx Hash: ${result}`, { + toast.success(`Token(s) minted & added to the collection successfully! Tx Hash: ${result}`, { style: { maxWidth: 'none' }, duration: 5000, }) @@ -355,7 +355,7 @@ const CollectionCreationPage: NextPage = () => { .use(baseMinterDetails?.existingBaseMinter as string) ?.mint(wallet.address, `${uploadDetails?.baseTokenURI?.trim()}`) .then((result) => { - toast.success(`Token minted & appended to the collection successfully! Tx Hash: ${result}`, { + toast.success(`Token minted & added to the collection successfully! Tx Hash: ${result}`, { style: { maxWidth: 'none' }, duration: 5000, }) @@ -913,7 +913,7 @@ const CollectionCreationPage: NextPage = () => { @@ -921,7 +921,7 @@ const CollectionCreationPage: NextPage = () => {

{minterType === 'base' && baseMinterDetails?.baseMinterAcquisitionMethod === 'existing' - ? 'Append Token' + ? 'Add Token' : 'Create Collection'}

@@ -1195,7 +1195,7 @@ const CollectionCreationPage: NextPage = () => { onClick={performUploadAndMintChecks} variant="solid" > - Mint & Append Token(s) + Mint & Add Token(s)