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 f9f9e86 commit 6491bf7Copy full SHA for 6491bf7
src/components/button/PlatformDownloadMuseHubButton.jsx
@@ -3,14 +3,16 @@ import useBrowserOS from "../../hooks/useDetectOS";
3
4
function PlatformDownloadMuseHubButton(props) {
5
const { museHubReleaseData } = props;
6
-
+ const browserOS = useBrowserOS();
7
+ console.log("browserOS", browserOS);
8
+
9
function onClickButtonHandler() {
10
if (typeof _paq !== "undefined") {
11
_paq.push([
12
"trackEvent",
13
"Download Button",
14
"Download Muse Hub",
- `Download Muse Hub button ${useBrowserOS}`,
15
+ `Download Muse Hub button ${browserOS}`,
16
]);
17
}
18
0 commit comments