From 7b8ba3a5dde19d56922d1786f23f494ced67aa48 Mon Sep 17 00:00:00 2001 From: Henrique Dias Date: Mon, 9 Feb 2026 18:47:35 +0100 Subject: [PATCH] fix: copy post link button --- components/InteractionsPreview.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/InteractionsPreview.tsx b/components/InteractionsPreview.tsx index c0b508ea..799c8663 100644 --- a/components/InteractionsPreview.tsx +++ b/components/InteractionsPreview.tsx @@ -77,7 +77,7 @@ export const InteractionPreview = (props: { let mouseY = e.clientY; if (!props.postUrl) return; - navigator.clipboard.writeText(`leaflet.pub${props.postUrl}`); + navigator.clipboard.writeText(props.postUrl); smoker({ text: Copied Link!, -- 2.51.2