diff --git a/src/components/Debug.tsx b/src/components/Debug.tsx index 793eac74..36d21791 100644 --- a/src/components/Debug.tsx +++ b/src/components/Debug.tsx @@ -417,9 +417,17 @@ const Debug: React.FC = ({ relayPool }) => {
- {/* Bunker Login Section */} + {/* Account Connection Section */}
-

Bunker Connection

+

+ {activeAccount + ? activeAccount.type === 'extension' + ? 'Browser Extension' + : activeAccount.type === 'nostr-connect' + ? 'Bunker Connection' + : 'Account Connection' + : 'Account Connection'} +

{!activeAccount ? (
Connect to your bunker (Nostr Connect signer) to enable encryption/decryption testing
@@ -447,7 +455,13 @@ const Debug: React.FC = ({ relayPool }) => { ) : (
-
Connected to bunker
+
+ {activeAccount.type === 'extension' + ? 'Connected via browser extension' + : activeAccount.type === 'nostr-connect' + ? 'Connected to bunker' + : 'Connected'} +
{pubkey}