From a5fa40aa1bb8917121cb94c733a4ad515ee89343 Mon Sep 17 00:00:00 2001 From: ekzyis Date: Mon, 9 Dec 2024 16:04:41 +0100 Subject: [PATCH] Fix comment in useSendWallets (#1691) --- wallets/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wallets/index.js b/wallets/index.js index dbf6f45b..bdf00083 100644 --- a/wallets/index.js +++ b/wallets/index.js @@ -220,7 +220,7 @@ export function useWallet (name) { export function useSendWallets () { const { wallets } = useWallets() - // return the first enabled wallet that is available and can send + // return all enabled wallets that are available and can send return wallets .filter(w => !w.def.isAvailable || w.def.isAvailable()) .filter(w => w.config?.enabled && canSend(w))