From 5a5f16536b3f244a5cd05e8ef0c0ad57802bf7df Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 18 Jan 2026 21:21:46 +0000 Subject: [PATCH] feat: display lightning address in NWC wallet info and clean up UI - Add lightning address (lud16) display in wallet info dropdown - Remove redundant "Connected" text from wallet heading - Keep status indicator icon for cleaner, more compact UI --- src/components/WalletViewer.tsx | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/src/components/WalletViewer.tsx b/src/components/WalletViewer.tsx index bd988a2..7034f14 100644 --- a/src/components/WalletViewer.tsx +++ b/src/components/WalletViewer.tsx @@ -926,10 +926,7 @@ export default function WalletViewer() { {walletInfo?.alias || "Lightning Wallet"} -
-
- Connected -
+
{/* Right: Info Dropdown, Refresh, Disconnect */} @@ -974,6 +971,16 @@ export default function WalletViewer() { />
)} + {state.nwcConnection?.lud16 && ( +
+ + Lightning Address + + + {state.nwcConnection.lud16} + +
+ )}