diff --git a/apps/dashboard/src/components/contract-functions/interactive-abi-function.tsx b/apps/dashboard/src/components/contract-functions/interactive-abi-function.tsx index 81c3293757e..61e45af5cce 100644 --- a/apps/dashboard/src/components/contract-functions/interactive-abi-function.tsx +++ b/apps/dashboard/src/components/contract-functions/interactive-abi-function.tsx @@ -7,7 +7,6 @@ import { Divider, Flex, FormControl, - Icon, Input, } from "@chakra-ui/react"; import { useMutation } from "@tanstack/react-query"; @@ -16,10 +15,9 @@ import { TransactionButton } from "components/buttons/TransactionButton"; import { SolidityInput } from "contract-ui/components/solidity-inputs"; import { camelToTitle } from "contract-ui/components/solidity-inputs/helpers"; import { replaceIpfsUrl } from "lib/sdk"; +import { InfoIcon, PlayIcon } from "lucide-react"; import { useEffect, useId, useMemo, useState } from "react"; import { FormProvider, useFieldArray, useForm } from "react-hook-form"; -import { FaCircleInfo } from "react-icons/fa6"; -import { FiPlay } from "react-icons/fi"; import { toast } from "sonner"; import { type ThirdwebContract, @@ -446,7 +444,7 @@ export const InteractiveAbiFunction: React.FC = ({ {isView ? ( diff --git a/apps/dashboard/src/contract-ui/tabs/listings/components/list-form.tsx b/apps/dashboard/src/contract-ui/tabs/listings/components/list-form.tsx index 79b9017ffb6..87de826190c 100644 --- a/apps/dashboard/src/contract-ui/tabs/listings/components/list-form.tsx +++ b/apps/dashboard/src/contract-ui/tabs/listings/components/list-form.tsx @@ -6,7 +6,6 @@ import { Box, Flex, FormControl, - Icon, Input, Select, Spinner, @@ -21,10 +20,9 @@ import { isAlchemySupported } from "lib/wallet/nfts/alchemy"; import { isMoralisSupported } from "lib/wallet/nfts/moralis"; import { isSimpleHashSupported } from "lib/wallet/nfts/simpleHash"; import type { WalletNFT } from "lib/wallet/nfts/types"; -import { CircleAlertIcon } from "lucide-react"; +import { CircleAlertIcon, InfoIcon } from "lucide-react"; import { useMemo } from "react"; import { useForm } from "react-hook-form"; -import { FiInfo } from "react-icons/fi"; import { toast } from "sonner"; import { NATIVE_TOKEN_ADDRESS, @@ -366,12 +364,7 @@ export const CreateListingsForm: React.FC = ({ {!isSupportedChain ? (
- + This chain is not supported by our NFT API yet, please enter the contract address of the NFT you want to list. @@ -462,12 +455,7 @@ export const CreateListingsForm: React.FC = ({ ) : nfts && nfts.length === 0 ? (
- + There are no NFTs owned by this wallet. You need NFTs to create a listing. You can create NFTs with thirdweb.{" "} diff --git a/apps/dashboard/src/contract-ui/tabs/nfts/components/reveal-button.tsx b/apps/dashboard/src/contract-ui/tabs/nfts/components/reveal-button.tsx index 36cd55aa964..76b596a48ac 100644 --- a/apps/dashboard/src/contract-ui/tabs/nfts/components/reveal-button.tsx +++ b/apps/dashboard/src/contract-ui/tabs/nfts/components/reveal-button.tsx @@ -1,8 +1,8 @@ "use client"; import { MinterOnly } from "@3rdweb-sdk/react/components/roles/minter-only"; -import { Icon, useDisclosure } from "@chakra-ui/react"; -import { FiEye } from "react-icons/fi"; +import { useDisclosure } from "@chakra-ui/react"; +import { EyeIcon } from "lucide-react"; import type { ThirdwebContract } from "thirdweb"; import { getBatchesToReveal } from "thirdweb/extensions/erc721"; import { useReadContract } from "thirdweb/react"; @@ -36,7 +36,7 @@ export const NFTRevealButton: React.FC = ({