From 4a38afe8101c52b5422245a85b49f3c2549229f1 Mon Sep 17 00:00:00 2001 From: SamidyFR <168582143+SamidyFR@users.noreply.github.com> Date: Fri, 27 Mar 2026 18:52:20 +0000 Subject: [PATCH] style: auto-fix linting issues --- js/events.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/events.js b/js/events.js index 7fbbd92..4ab3a50 100644 --- a/js/events.js +++ b/js/events.js @@ -1641,7 +1641,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 typeForUrl= type === 'user-playlist' ? 'userplaylist' : type; + const typeForUrl = type === 'user-playlist' ? 'userplaylist' : type; const url = getShareUrl(storedHref ? storedHref : `/${typeForUrl}/${item.id || item.uuid}`); trackCopyLink(type, item.id || item.uuid);