diff --git a/src/wallet/components/WalletAdvancedSend/components/Send.tsx b/src/wallet/components/WalletAdvancedSend/components/Send.tsx index c0eda066c92..1f7bc2d88cf 100644 --- a/src/wallet/components/WalletAdvancedSend/components/Send.tsx +++ b/src/wallet/components/WalletAdvancedSend/components/Send.tsx @@ -3,7 +3,7 @@ import { background, border, cn, color } from '@/styles/theme'; import { useMemo, type ReactNode } from 'react'; import { SendHeader } from './SendHeader'; import { SendProvider, useSendContext } from './SendProvider'; -import { AddressInput } from '@/wallet/components/WalletAdvancedSend/components/AddressInput'; +import { SendAddressInput } from '@/wallet/components/WalletAdvancedSend/components/SendAddressInput'; import { SendAddressSelector } from '@/wallet/components/WalletAdvancedSend/components/SendAddressSelector'; import { SendTokenSelector } from '@/wallet/components/WalletAdvancedSend/components/SendTokenSelector'; import { SendAmountInput } from '@/wallet/components/WalletAdvancedSend/components/SendAmountInput'; @@ -72,7 +72,7 @@ function SendDefaultChildren() { if (!context.selectedRecipientAddress) { return ( <> - + {context.validatedRecipientAddress && ( )} @@ -83,7 +83,7 @@ function SendDefaultChildren() { if (!context.selectedToken) { return ( <> - + ); @@ -91,7 +91,7 @@ function SendDefaultChildren() { return (
- + diff --git a/src/wallet/components/WalletAdvancedSend/components/AddressInput.tsx b/src/wallet/components/WalletAdvancedSend/components/SendAddressInput.tsx similarity index 96% rename from src/wallet/components/WalletAdvancedSend/components/AddressInput.tsx rename to src/wallet/components/WalletAdvancedSend/components/SendAddressInput.tsx index 9065f82b413..0e597946e07 100644 --- a/src/wallet/components/WalletAdvancedSend/components/AddressInput.tsx +++ b/src/wallet/components/WalletAdvancedSend/components/SendAddressInput.tsx @@ -8,7 +8,7 @@ type AddressInputProps = { className?: string; }; -export function AddressInput({ className }: AddressInputProps) { +export function SendAddressInput({ className }: AddressInputProps) { const { selectedRecipientAddress, recipientInput,