Skip to content

Commit

Permalink
Merge pull request #13252 from ethereum/hotfix-assets
Browse files Browse the repository at this point in the history
hotfix: Fix assets download links
  • Loading branch information
corwintines authored Jun 26, 2024
2 parents 5e67165 + 81eab7e commit 8b2862c
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 8b2862c

Please sign in to comment.