From 325021ea85be012bb8890731db0e7794e3b4343d Mon Sep 17 00:00:00 2001 From: Juha Uotila <10782843+inffy@users.noreply.github.com> Date: Tue, 11 Aug 2026 17:28:11 +0300 Subject: [PATCH] chore: rename ISO filenames in download picker --- components/sections/download/download.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/sections/download/download.tsx b/components/sections/download/download.tsx index f47d87d..9919899 100644 --- a/components/sections/download/download.tsx +++ b/components/sections/download/download.tsx @@ -202,8 +202,8 @@ function InfoPanel({ } function DownloadButtons({ imageName }: { imageName: string }) { - const downloadLink = `https://dl.getaurora.dev/${imageName}-webui-x86_64.iso`; - const checksumLink = `https://dl.getaurora.dev/${imageName}-webui-x86_64.iso-CHECKSUM`; + const downloadLink = `https://dl.getaurora.dev/${imageName}-x86_64.iso`; + const checksumLink = `https://dl.getaurora.dev/${imageName}-x86_64.iso-CHECKSUM`; const t = useTranslations("Download-Component"); return (