diff --git a/src/element/Note.js b/src/element/Note.js index 24450386..085fe74b 100644 --- a/src/element/Note.js +++ b/src/element/Note.js @@ -64,7 +64,7 @@ export default function Note(props) { let pubMentions = mentions.length > maxMentions ? `${mentions?.slice(0, maxMentions).join(", ")} & ${mentions.length - maxMentions} others` : mentions?.join(", "); return (
- ➡️ {(pubMentions?.length ?? 0) > 0 ? pubMentions : hexToBech32("note", replyId).substring(0, 12)} + ➡️ {(pubMentions?.length ?? 0) > 0 ? pubMentions : hexToBech32("note", replyId)?.substring(0, 12)}
) }