diff --git a/apps/bridge-dapp/src/pages/Hubble/Bridge/Withdraw/index.tsx b/apps/bridge-dapp/src/pages/Hubble/Bridge/Withdraw/index.tsx index cfa1ec38b4..2c44c4bdc3 100644 --- a/apps/bridge-dapp/src/pages/Hubble/Bridge/Withdraw/index.tsx +++ b/apps/bridge-dapp/src/pages/Hubble/Bridge/Withdraw/index.tsx @@ -266,7 +266,10 @@ const Withdraw = () => { onIsFixedAmountChange={() => setCustomAmount(!isCustom)} > - + } onClick={() => navigate(SELECT_RELAYER_PATH)} diff --git a/libs/webb-ui-components/src/components/TransactionInputCard/TransactionInputCard.tsx b/libs/webb-ui-components/src/components/TransactionInputCard/TransactionInputCard.tsx index fc649eb6e6..f5362d1f76 100644 --- a/libs/webb-ui-components/src/components/TransactionInputCard/TransactionInputCard.tsx +++ b/libs/webb-ui-components/src/components/TransactionInputCard/TransactionInputCard.tsx @@ -92,7 +92,7 @@ TransactionInputCardRoot.displayName = 'TransactionInputCardRoot'; const TransactionChainSelector = forwardRef< React.ElementRef<'button'>, TransactionChainSelectorProps ->(({ typedChainId: typedChainIdProps, className, ...props }, ref) => { +>(({ typedChainId: typedChainIdProps, className, disabled, ...props }, ref) => { const context = useContext(TransactionInputCardContext); const typedChainId = typedChainIdProps ?? context.typedChainId; @@ -101,6 +101,7 @@ const TransactionChainSelector = forwardRef< return ( ); });