Skip to content

Commit

Permalink
fix: Invalid DOM property class. Did you mean className
Browse files Browse the repository at this point in the history
  • Loading branch information
avoinea committed Dec 11, 2023
1 parent 0b4382e commit 2c02e99
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/MoreInfoLink.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const MoreInfoLink = ({ contentTypeLink }) => {
return (
<Link href={contentTypeLink}>
<button className={cx('eea-map-more-info-button')}>
More info <i class="ri-external-link-line"></i>
More info <i className="ri-external-link-line"></i>
</button>
</Link>
);
Expand Down
2 changes: 1 addition & 1 deletion src/components/Share.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const Share = ({ contentTypeLink = '' }) => {
<div className="eea-map-share-container">
<button className={cx('eea-map-share-button', { expanded })}>
<span>Share</span>
<i class="ri-share-fill"></i>
<i className="ri-share-fill"></i>
</button>
</div>
}
Expand Down

0 comments on commit 2c02e99

Please sign in to comment.