Skip to content

Commit cb90eaa

Browse files
committed
lint
1 parent 07dc975 commit cb90eaa

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

src/components/SendModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export const SendModal: React.FC<SendModalProps> = ({ wallet, allWallets, onClos
7575
// Filter compatible wallets by curve
7676
useEffect(() => {
7777
const currentCurve = wallet.curve || 'secp256k1';
78-
const filtered = allWallets.filter(w =>
78+
const filtered = allWallets.filter(w =>
7979
w.id !== wallet.id && // Exclude current wallet
8080
(w.curve || 'secp256k1') === currentCurve // Same curve
8181
);

src/pages/Popup/DataTypes.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,10 @@ export interface JsonWallet {
5151
}>;
5252
};
5353
};
54+
}
55+
56+
export interface ReceiveQR {
57+
address: string;
58+
label?: string;
59+
curve: string;
5460
}

0 commit comments

Comments
 (0)