-
-
+ {/* Hide member list for self-conversations (Saved Messages) */}
+ {!(
+ protocol === "nip-17" &&
+ conversation.participants.length === 2 &&
+ conversation.participants[0].pubkey ===
+ conversation.participants[1].pubkey
+ ) &&
}
+ {/* Show inbox relays for NIP-17, regular relays for other protocols */}
+ {protocol === "nip-17" ? (
+
+ ) : (
+
+ )}
+ {/* Show lock icon for encrypted conversations */}
+ {protocol === "nip-17" && (
+
+
+
+ )}