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(" ");