diff --git a/src/custom/pages/Profile/LockedGnoVesting/hooks.ts b/src/custom/pages/Profile/LockedGnoVesting/hooks.ts index 00f7960882..19e7a132eb 100644 --- a/src/custom/pages/Profile/LockedGnoVesting/hooks.ts +++ b/src/custom/pages/Profile/LockedGnoVesting/hooks.ts @@ -14,7 +14,7 @@ import { OperationType } from 'components/TransactionConfirmationModal' import { fetchClaim } from './claimData' // We just generally use the mainnet version. We don't read from the contract anyways so the address doesn't matter -const COW = COW_TOKENS[1] +const COW = COW_TOKENS[SupportedChainId.MAINNET] const MERKLE_DROP_CONTRACT_ADDRESSES = { [SupportedChainId.MAINNET]: '0x64646f112FfD6F1B7533359CFaAF7998F23C8c40', diff --git a/src/custom/pages/Profile/LockedGnoVesting/index.tsx b/src/custom/pages/Profile/LockedGnoVesting/index.tsx index 394e224317..6a1fde79ac 100644 --- a/src/custom/pages/Profile/LockedGnoVesting/index.tsx +++ b/src/custom/pages/Profile/LockedGnoVesting/index.tsx @@ -9,7 +9,6 @@ import cowImage from 'assets/cow-swap/cow_v2.svg' import ArrowIcon from 'assets/cow-swap/arrow.svg' import { AMOUNT_PRECISION } from 'constants/index' import { formatSmartLocaleAware } from 'utils/format' -import useTransactionConfirmationModal from 'hooks/useTransactionConfirmationModal' import { OperationType } from 'components/TransactionConfirmationModal' import { useErrorModal } from 'hooks/useErrorMessageAndModal'