Skip to content

Commit 9adfeab

Browse files
authored
Merge pull request #247 from ethereum/fix-translated-images-link
fix: translated images link
2 parents 863ac4c + f15b5d8 commit 9adfeab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/MarkdownImage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const MarkdownImage = ({
4343
// display the wrapper as a `span` to avoid dom nesting warnings as mdx
4444
// sometimes wraps images in `p` tags
4545
<Flex as="span" justify="center">
46-
<Link href={transformedSrc} target="_blank" rel="noopener">
46+
<Link href={transformedSrc} target="_blank" rel="noopener" locale={false}>
4747
<Image
4848
alt={alt}
4949
width={imageWidth}

0 commit comments

Comments
 (0)