diff --git a/ui/src/components/core/button/button.styles.ts b/ui/src/components/core/button/button.styles.ts index 0c3756b..884d3a4 100644 --- a/ui/src/components/core/button/button.styles.ts +++ b/ui/src/components/core/button/button.styles.ts @@ -126,17 +126,6 @@ const getButtonCompoundVariant = ({ '&:focus, &:active': { backgroundColor: `$${color}3`, }, - - '&:disabled': { - backgroundColor: `initial`, - '&:hover': { - color: `$${color}11`, - backgroundColor: `initial`, - }, - '& img, & svg': { - filter: 'grayscale(100%)', - }, - }, }; default: diff --git a/ui/src/views/mint/mint-stepper.tsx b/ui/src/views/mint/mint-stepper.tsx index 7fbf817..a4b5306 100644 --- a/ui/src/views/mint/mint-stepper.tsx +++ b/ui/src/views/mint/mint-stepper.tsx @@ -12,6 +12,7 @@ export const MintStepper: React.FC = () => { const { transaction: { isSuccess }, } = Mint.useTransactionContext(); + const { form: { isValid: [, setIsValid], diff --git a/ui/src/views/mint/wallet-step/connect-wallet-button.tsx b/ui/src/views/mint/wallet-step/connect-wallet-button.tsx index a0e3441..273747e 100644 --- a/ui/src/views/mint/wallet-step/connect-wallet-button.tsx +++ b/ui/src/views/mint/wallet-step/connect-wallet-button.tsx @@ -1,6 +1,6 @@ import { ConnectKitButton } from 'connectkit'; -import { Button, Stepper } from '@/components'; +import { Stepper } from '@/components'; import { ButtonConnection } from '../button-connection'; @@ -9,19 +9,14 @@ export const ConnectWalletButton: React.FC = () => { return ( - {({ isConnected, show, truncatedAddress, address }) => { + {({ isConnected, show, address }) => { if (isConnected && address) { - return ( - - ); + nextStep(); } else { return ( );