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.
1 parent 2edfed0 commit 2ea6179Copy full SHA for 2ea6179
src/components/MarkdownImage.tsx
@@ -37,13 +37,13 @@ const MarkdownImage = ({
37
}
38
39
const fileExt = extname(transformedSrc).toLowerCase()
40
- const isAnimated = [".gif", ".apng", ".webp"].includes(fileExt)
+ const isAnimated = [".gif", ".apng", ".webp"].includes(fileExt)
41
42
return (
43
// display the wrapper as a `span` to avoid dom nesting warnings as mdx
44
// sometimes wraps images in `p` tags
45
<Flex as="span" justify="center">
46
- <Link href={transformedSrc} target="_blank" rel="noopener">
+ <Link href={transformedSrc} target="_blank" rel="noopener" locale={false}>
47
<Image
48
alt={alt}
49
width={imageWidth}
0 commit comments