From f79915aa89d7ed7a859bc52e130f8a53f298df8b Mon Sep 17 00:00:00 2001 From: John Coffey Date: Wed, 16 Sep 2026 12:23:47 -0700 Subject: [PATCH] Drop a wrong issue reference from a comment --- web/src/lib/shareTarget.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/lib/shareTarget.ts b/web/src/lib/shareTarget.ts index c5d03a4..9689675 100644 --- a/web/src/lib/shareTarget.ts +++ b/web/src/lib/shareTarget.ts @@ -124,7 +124,7 @@ export function shareBody(share: Pick): string { * Only what the reader needs to recognize it as theirs: the title, the start * of the text or link, and the names of the files. It is shown before any of * it goes near a message, because the page cannot tell a share the reader - * made from one a website posted at the same address (#375 review). + * made from one a website posted at the same address. */ export function shareSummary(share: SharedContent): { title: string; preview: string; files: string[] } { const body = [share.text, share.url].map((s) => s.trim()).filter(Boolean).join(" ");