@@ -90,7 +90,6 @@ type SellTabContentProps = SellChildrenPropsSubset & {
9090 onSlippageToleranceChange ?: ( value : string | undefined ) => void
9191
9292 // Input/output state
93- disableInputAutoFocus : boolean
9493 isUsdInputMode : boolean
9594 usdInputValue : string
9695 tradeType : TradeType
@@ -162,7 +161,6 @@ const SellTabContent: FC<SellTabContentProps> = ({
162161 slippageTolerance,
163162 onOpenSlippageConfig,
164163 onSlippageToleranceChange,
165- disableInputAutoFocus,
166164 isUsdInputMode,
167165 usdInputValue,
168166 tradeType,
@@ -351,7 +349,6 @@ const SellTabContent: FC<SellTabContentProps> = ({
351349 />
352350 < Flex align = "center" justify = "between" css = { { width : '100%' } } >
353351 < AmountInput
354- autoFocus = { ! disableInputAutoFocus }
355352 prefixSymbol = { isUsdInputMode ? '$' : undefined }
356353 value = {
357354 isUsdInputMode
@@ -634,19 +631,18 @@ const SellTabContent: FC<SellTabContentProps> = ({
634631 isValidAddress = { isValidToAddress }
635632 token = { toToken }
636633 onAnalyticEvent = { onAnalyticEvent }
637- multiWalletSupportEnabled = { multiWalletSupportEnabled }
638- fromChainWalletVMSupported = { toChainWalletVMSupported }
639- supportedWalletVMs = { supportedWalletVMs }
640- popularChainIds = { popularChainIds }
641- chainIdsFilter = { chainIdsFilterForDestination }
642- linkedWallets = { linkedWallets }
643- context = "to"
644- autoSelectToken = { true }
645- setToken = { ( token ) => {
646- if (
647- token ?. address === fromToken ?. address &&
648- token ?. chainId === fromToken ?. chainId &&
649- recipient === address
634+ multiWalletSupportEnabled = { multiWalletSupportEnabled }
635+ fromChainWalletVMSupported = { toChainWalletVMSupported }
636+ supportedWalletVMs = { supportedWalletVMs }
637+ popularChainIds = { popularChainIds }
638+ chainIdsFilter = { chainIdsFilterForDestination }
639+ linkedWallets = { linkedWallets }
640+ context = "to"
641+ setToken = { ( token ) => {
642+ if (
643+ token ?. address === fromToken ?. address &&
644+ token ?. chainId === fromToken ?. chainId &&
645+ recipient === address
650646 ) {
651647 return
652648 }
0 commit comments