diff --git a/apps/web/src/components/BridgeForm.tsx b/apps/web/src/components/BridgeForm.tsx index 2da35ae40..7fe24a844 100644 --- a/apps/web/src/components/BridgeForm.tsx +++ b/apps/web/src/components/BridgeForm.tsx @@ -422,33 +422,35 @@ export default function BridgeForm({ showAmountsBtn={selectedNetworkA.name === Network.Ethereum} disabled={hasUnconfirmedTxn} /> -
- {amountErr ? ( - {amountErr} - ) : ( - selectedNetworkA.name === Network.Ethereum && ( - <> - - Available: - - - - - ) - )} -
+ {isConnected && ( +
+ {amountErr ? ( + {amountErr} + ) : ( + selectedNetworkA.name === Network.Ethereum && ( + <> + + Available: + + + + + ) + )} +
+ )}