Skip to content

Commit 78d66b3

Browse files
author
Kaiwei Yang
authored
fix: remove redundant "}" of the image url (#372)
1 parent b8fc62f commit 78d66b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/src/components/Image.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export const Image = ({ img, src }) => {
77
siteConfig: { baseUrl },
88
} = context;
99

10-
const imageSrc = src || `${baseUrl}img/${img}}`;
10+
const imageSrc = src || `${baseUrl}img/${img}`;
1111

1212
return (
1313
<div className="img-wrapper">

0 commit comments

Comments
 (0)