diff --git a/apps/website/src/components/DownloadButton.tsx b/apps/website/src/components/DownloadButton.tsx index c860a312e..150f59b48 100644 --- a/apps/website/src/components/DownloadButton.tsx +++ b/apps/website/src/components/DownloadButton.tsx @@ -3,14 +3,16 @@ import "./DownloadButton.css"; import Button from "./Button.js"; import downloadIcon from "../assets/boxicons/bx-arrow-in-down-square-half.svg?raw"; import packageJson from "../../../../package.json" with { type: "json" }; -import { useEffect, useState } from "preact/hooks"; +import { useContext, useEffect, useState } from "preact/hooks"; import { useTranslation } from "react-i18next"; +import { LocaleContext } from "../index.js"; interface DownloadButtonProps { big?: boolean; } export default function DownloadButton({ big }: DownloadButtonProps) { + const locale = useContext(LocaleContext); const { t } = useTranslation(); const [ recommendedDownload, setRecommendedDownload ] = useState(); useEffect(() => { @@ -36,7 +38,7 @@ export default function DownloadButton({ big }: DownloadButtonProps) { ) : (