Skip to content

Commit 482804c

Browse files
committed
Update SendModal.tsx
1 parent 21c2bb0 commit 482804c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/components/SendModal.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export const SendModal: React.FC<SendModalProps> = ({ wallet, allWallets, onClos
7474
// Filter compatible wallets by curve
7575
useEffect(() => {
7676
const currentCurve = wallet.curve || 'secp256k1';
77-
const filtered = allWallets.filter(w =>
77+
const filtered = allWallets.filter(w =>
7878
w.id !== wallet.id && // Exclude current wallet
7979
(w.curve || 'secp256k1') === currentCurve // Same curve
8080
);
@@ -503,7 +503,7 @@ export const SendModal: React.FC<SendModalProps> = ({ wallet, allWallets, onClos
503503
My Wallets
504504
<ChevronDownIcon />
505505
</button>
506-
506+
507507
{showWalletDropdown && (
508508
<div style={{
509509
position: 'absolute',
@@ -554,7 +554,7 @@ export const SendModal: React.FC<SendModalProps> = ({ wallet, allWallets, onClos
554554
</div>
555555
)}
556556
</div>
557-
557+
558558
<div style={{ position: 'relative' }}>
559559
<input
560560
ref={addressInputRef}
@@ -584,7 +584,7 @@ export const SendModal: React.FC<SendModalProps> = ({ wallet, allWallets, onClos
584584
onFocus={(e) => e.target.style.borderColor = '#8b5cf6'}
585585
onBlur={(e) => e.target.style.borderColor = errors.address ? '#ef4444' : '#3a3a3a'}
586586
/>
587-
587+
588588
{selectedRecipientWallet && (
589589
<div style={{
590590
position: 'absolute',
@@ -601,7 +601,7 @@ export const SendModal: React.FC<SendModalProps> = ({ wallet, allWallets, onClos
601601
</div>
602602
)}
603603
</div>
604-
604+
605605
{selectedRecipientWallet && (
606606
<div style={{
607607
marginTop: '6px',
@@ -615,7 +615,7 @@ export const SendModal: React.FC<SendModalProps> = ({ wallet, allWallets, onClos
615615
Sending to: {selectedRecipientWallet.name || `Wallet ${selectedRecipientWallet.id}`}
616616
</div>
617617
)}
618-
618+
619619
{errors.address && (
620620
<div style={{ color: '#ef4444', fontSize: '12px', marginTop: '4px' }}>
621621
{errors.address}

0 commit comments

Comments
 (0)