Skip to content

Commit

Permalink
update filename
Browse files Browse the repository at this point in the history
  • Loading branch information
brendan-defi committed Jan 28, 2025
1 parent 09bb620 commit 43a0f8a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/wallet/components/WalletAdvancedSend/components/Send.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -72,7 +72,7 @@ function SendDefaultChildren() {
if (!context.selectedRecipientAddress) {
return (
<>
<AddressInput />
<SendAddressInput />
{context.validatedRecipientAddress && (
<SendAddressSelector address={context.validatedRecipientAddress} />
)}
Expand All @@ -83,15 +83,15 @@ function SendDefaultChildren() {
if (!context.selectedToken) {
return (
<>
<AddressInput />
<SendAddressInput />
<SendTokenSelector />
</>
);
}

return (
<div className="flex h-full flex-col justify-between">
<AddressInput />
<SendAddressInput />
<SendAmountInput className="pb-2" />
<SendTokenSelector />
<SendButton />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ type AddressInputProps = {
className?: string;
};

export function AddressInput({ className }: AddressInputProps) {
export function SendAddressInput({ className }: AddressInputProps) {
const {
selectedRecipientAddress,
recipientInput,
Expand Down

0 comments on commit 43a0f8a

Please sign in to comment.