Skip to content

Commit 56de480

Browse files
committed
fix: correctly set image path
1 parent 5078e22 commit 56de480

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/HomepageFeatures/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ function Feature({title, image, description}: FeatureItem) {
6666
return (
6767
<div className={clsx('col col--4')}>
6868
<div className="text--center">
69-
<img src={`/img/${image}`} className={styles.featureSvg} alt={title} />
69+
<img src={`img/${image}`} className={styles.featureSvg} alt={title} />
7070
</div>
7171
<div className="text--center padding-horiz--md">
7272
<Heading as="h3">{title}</Heading>

0 commit comments

Comments
 (0)