From f58b853e8b76a2ebb53af90f5d375312d5e9a80d Mon Sep 17 00:00:00 2001 From: ekzyis Date: Sun, 3 Aug 2025 07:42:52 +0200 Subject: [PATCH] Fix input type of url for NWC receive (#2389) --- wallets/lib/protocols/nwc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wallets/lib/protocols/nwc.js b/wallets/lib/protocols/nwc.js index 9e4a3561..360516eb 100644 --- a/wallets/lib/protocols/nwc.js +++ b/wallets/lib/protocols/nwc.js @@ -32,7 +32,7 @@ export default [ name: 'url', label: 'url', placeholder: 'nostr+walletconnect://', - type: 'text', + type: 'password', required: true, validate: nwcUrlValidator() }