From a1bc6dc217fa373129a8196fff7b6111374b5c92 Mon Sep 17 00:00:00 2001 From: ekzyis Date: Mon, 5 May 2025 09:56:41 -0500 Subject: [PATCH] Remove 'originally posted at' (#2148) --- components/use-crossposter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/use-crossposter.js b/components/use-crossposter.js index 560887ff..fabf5a39 100644 --- a/components/use-crossposter.js +++ b/components/use-crossposter.js @@ -17,7 +17,7 @@ function itemToContent (item, { includeTitle = true } = {}) { content += `\n\n${item.text}` } - content += `\n\noriginally posted at https://stacker.news/items/${item.id}` + content += `\n\nhttps://stacker.news/items/${item.id}` return content.trim() }