remove "client" event tag

This commit is contained in:
hzrd149
2023-03-19 14:22:02 -06:00
parent 340458aa52
commit fd31a44224

View File

@@ -55,11 +55,6 @@ function finalizeNote(draft: DraftNostrEvent) {
updatedDraft.content = c.slice(0, match.index) + `#[${index}]` + c.slice(match.index + match[0].length);
}
// add client tag, TODO: find a better place for this
if (!updatedDraft.tags.some((t) => t[0] === "client")) {
updatedDraft.tags.push(["client", "noStrudel"]);
}
return updatedDraft;
}