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.
2 parents 8859386 + f61c203 commit 7d3efbeCopy full SHA for 7d3efbe
src/components/AssetDownload/index.tsx
@@ -26,6 +26,7 @@ const AssetDownload = ({
26
artistName,
27
artistUrl,
28
image,
29
+ svgUrl,
30
title,
31
...props
32
}: AssetDownloadProps) => {
@@ -66,12 +67,11 @@ const AssetDownload = ({
66
67
{t("page-assets-download-download")} (
68
{extname(imgSrc).slice(1).toUpperCase()})
69
</ButtonLink>
- {/* Disables SVG due to bug: https://github.com/ethereum/ethereum-org-website/issues/12267 */}
70
- {/* {svgUrl && (
+ {svgUrl && (
71
<ButtonLink href={svgUrl} onClick={matomoHandler} target="_blank">
72
{t("page-assets-download-download")} (SVG)
73
74
- )} */}
+ )}
75
</Flex>
76
77
)
0 commit comments