diff --git a/wormhole-connect/src/utils/transferValidation.ts b/wormhole-connect/src/utils/transferValidation.ts index 840f8520f..3bf851ce3 100644 --- a/wormhole-connect/src/utils/transferValidation.ts +++ b/wormhole-connect/src/utils/transferValidation.ts @@ -161,7 +161,11 @@ export const validateWallet = async ( if (wallet.currentAddress && wallet.currentAddress !== wallet.address) return 'Switch to connected wallet'; const acceptedChains = walletAcceptedChains(wallet.type); - if (chain && !acceptedChains.includes(chain)) + if ( + chain && + !acceptedChains.includes(chain) && + wallet.name !== MANUAL_WALLET_NAME + ) return `Connected wallet is not supported for ${chain}`; return ''; };