From fd31a44224107cb260e80cbf21f182e5bf7ad9ef Mon Sep 17 00:00:00 2001 From: hzrd149 Date: Sun, 19 Mar 2023 14:22:02 -0600 Subject: [PATCH] remove "client" event tag --- src/components/post-modal/index.tsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/components/post-modal/index.tsx b/src/components/post-modal/index.tsx index 2da5004b4..f97a64458 100644 --- a/src/components/post-modal/index.tsx +++ b/src/components/post-modal/index.tsx @@ -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; }