Skip to content

Commit

Permalink
hotfix: Fix assets download links
Browse files Browse the repository at this point in the history
  • Loading branch information
corwintines committed Jun 26, 2024
1 parent 5e67165 commit 81eab7e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/AssetDownload/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,12 @@ const AssetDownload = ({
)}
</Box>
<Flex gap={5} mt={4}>
<ButtonLink href={imgSrc} onClick={matomoHandler} target="_blank">
<ButtonLink
href={imgSrc}
onClick={matomoHandler}
target="_blank"
locale={false}
>
{t("page-assets-download-download")} (
{extname(imgSrc).slice(1).toUpperCase()})
</ButtonLink>
Expand Down

0 comments on commit 81eab7e

Please sign in to comment.