diff --git a/src/components/button/DownloadButton.jsx b/src/components/button/DownloadButton.jsx index 246a99b..336a793 100644 --- a/src/components/button/DownloadButton.jsx +++ b/src/components/button/DownloadButton.jsx @@ -44,7 +44,7 @@ function DownloadButton() { case "Debian": case "Red Hat": case "SuSE": - return renderButton(audacityReleases.lin[0].browser_download_url); + return; //primary button is Linux downlaod already default: return renderButton("/download"); } diff --git a/src/components/button/DownloadMuseHubButton.jsx b/src/components/button/DownloadMuseHubButton.jsx index 08618e6..390a2b5 100644 --- a/src/components/button/DownloadMuseHubButton.jsx +++ b/src/components/button/DownloadMuseHubButton.jsx @@ -50,7 +50,7 @@ function DownloadMuseHubButton() { case "Debian": case "Red Hat": case "SuSE": - return; // Musehub not relevant on Linux yet + return renderButton(audacityReleases.lin[0].browser_download_url); // appimage on Linux default: return renderButton("https://www.musehub.com/"); }