From 5cd0d10b77b8a580df8b1d38fd26c90c98387403 Mon Sep 17 00:00:00 2001 From: JulienMaille <182520+JulienMaille@users.noreply.github.com> Date: Sun, 15 Feb 2026 20:08:02 +0000 Subject: [PATCH] style: auto-fix linting issues --- js/events.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/js/events.js b/js/events.js index 7cde3b9..f37b5a6 100644 --- a/js/events.js +++ b/js/events.js @@ -1160,9 +1160,7 @@ export async function handleTrackAction( // Use stored href from card if available, otherwise construct URL const contextMenu = document.getElementById('context-menu'); const storedHref = contextMenu?._contextHref; - const url = getShareUrl( - storedHref ? storedHref : `/track/${item.id || item.uuid}` - ); + const url = getShareUrl(storedHref ? storedHref : `/track/${item.id || item.uuid}`); trackCopyLink(type, item.id || item.uuid); navigator.clipboard.writeText(url).then(() => {