Replace Append -> Add

This commit is contained in:
Serkan Reis
2023-03-31 19:25:32 +03:00
parent 245117da7a
commit 3efad8a1fd
3 changed files with 8 additions and 10 deletions
+2 -4
View File
@@ -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',
@@ -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
</label>
</div>
</div>