diff --git a/bridge_ui/src/components/TokenSelectors/SourceTokenSelector.tsx b/bridge_ui/src/components/TokenSelectors/SourceTokenSelector.tsx index 40beb6f2..71e1311f 100644 --- a/bridge_ui/src/components/TokenSelectors/SourceTokenSelector.tsx +++ b/bridge_ui/src/components/TokenSelectors/SourceTokenSelector.tsx @@ -45,9 +45,9 @@ export const TokenSelector = (props: TokenSelectorProps) => { //This is only for errors so bad that we shouldn't even mount the component const fatalError = - maps?.tokenAccounts?.error && - !(lookupChain === CHAIN_ID_ETH) && - !(lookupChain === CHAIN_ID_TERRA); //Terra & ETH can proceed because it has advanced mode + lookupChain !== CHAIN_ID_ETH && + lookupChain !== CHAIN_ID_TERRA && + maps?.tokenAccounts?.error; //Terra & ETH can proceed because it has advanced mode const content = fatalError ? ( {fatalError} diff --git a/bridge_ui/src/components/Transfer/Recovery.tsx b/bridge_ui/src/components/Transfer/Recovery.tsx index 0a4a59da..db232778 100644 --- a/bridge_ui/src/components/Transfer/Recovery.tsx +++ b/bridge_ui/src/components/Transfer/Recovery.tsx @@ -263,7 +263,7 @@ function RecoveryDialogContent({ onClose }: { onClose: () => void }) { If you have sent your tokens but have not redeemed them, you may paste - the signed VAA here to resume from the redeem step. + in the Source Transaction ID (from Step 3) to resume your transfer.