diff --git a/src/components/forms/AddressInput/index.jsx b/src/components/forms/AddressInput/index.jsx index 1ad3ea3a..71217c95 100644 --- a/src/components/forms/AddressInput/index.jsx +++ b/src/components/forms/AddressInput/index.jsx @@ -7,7 +7,6 @@ import { composeValidators, required, mustBeEthereumAddress, - mustBeEthereumContractAddress, } from '~/components/forms/validator' import { getAddressFromENS } from '~/logic/wallets/getWeb3' @@ -20,7 +19,6 @@ type Props = { testId?: string, validators?: Function[], inputAdornment?: React.Element, - mustBeContract?: boolean, } const isValidEnsName = (name) => /^([\w-]+\.)+(eth|test|xyz|luxe)$/.test(name) @@ -37,7 +35,6 @@ const AddressInput = ({ testId, inputAdornment, validators = [], - mustBeContract, }: Props): React.Element<*> => ( <>