We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20f085a commit 0403bf4Copy full SHA for 0403bf4
src/components/button/DownloadMuseHubButton.jsx
@@ -10,6 +10,8 @@ function DownloadMuseHubButton() {
10
setBrowserOS(platform.os.family);
11
}, []);
12
13
+ const isLinux = browserOS === "Linux" || browserOS === "Ubuntu" || browserOS === "Debian" || browserOS === "Red Hat" || browserOS === "SuSE";
14
+
15
function handleButtonClick(href) {
16
if (
17
href !== "https://www.musehub.com/" &&
@@ -48,7 +50,7 @@ function DownloadMuseHubButton() {
48
50
<p>
49
51
<span className="font-semibold">
52
Download Audacity {audacityReleases.version}</span><br/>
- <span className="font-light text-s">via MuseHub</span>
53
+ {!isLinux && <span className="font-light text-s">via MuseHub</span>}
54
</p>
55
</a>
56
);
0 commit comments