From b94504bb69a9ef2f9605a3e78dc5c63e13409c1b Mon Sep 17 00:00:00 2001 From: ajdj100 Date: Thu, 1 Jan 2026 02:29:13 -0500 Subject: [PATCH] added copy link utility --- ui/src/lib/copyLink.ts | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 ui/src/lib/copyLink.ts diff --git a/ui/src/lib/copyLink.ts b/ui/src/lib/copyLink.ts new file mode 100644 index 0000000..b6950c4 --- /dev/null +++ b/ui/src/lib/copyLink.ts @@ -0,0 +1,3 @@ +export function CopyLink() { + navigator.clipboard.writeText(window.location.href); +} \ No newline at end of file