From b907cc2f65cf71a04fe96ad0575a9db6bf895835 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A2u=20Cao?= Date: Sat, 26 Apr 2025 17:44:56 +0400 Subject: [PATCH] Remove redundant nostr address from details It's already shown under the name, including the verification status --- html.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/html.ts b/html.ts index 9a8033c..5d1b96e 100644 --- a/html.ts +++ b/html.ts @@ -113,9 +113,6 @@ export function articleListHtml(articles: Article[]): string { function userAddressHtml(profile: Profile) { let html = ""; - if (profile.nip05) { - html += `
Nostr address
${profile.nip05}
\n`; - } if (profile.lud16) { html += `
Lightning address
${profile.lud16}
\n`; }