From 21e47afe4cb030ef80d14bef0f5bb3e70a5a898a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bryan=20Gald=C3=A1mez?= Date: Sat, 21 Jun 2025 13:07:41 -0600 Subject: [PATCH] fix: invalid css selector for download links (#694) --- src/components/download/DownloadScript.astro | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/download/DownloadScript.astro b/src/components/download/DownloadScript.astro index 32924c2..a21d86b 100644 --- a/src/components/download/DownloadScript.astro +++ b/src/components/download/DownloadScript.astro @@ -95,7 +95,8 @@ } // Replace all download links with twilight versions - const downloadLinks = document.querySelectorAll('a.download-link') + const downloadLinks = document.querySelectorAll('a.download-button') + for (const link of downloadLinks) { if (!link.id.includes('beta')) { const href = link.getAttribute('href')