Skip to content

Commit

Permalink
fix: change div to span for header links
Browse files Browse the repository at this point in the history
  • Loading branch information
shawn320 committed Feb 2, 2023
1 parent 11f6cff commit 753c6f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Menu/Menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export function Menu(props) {
key={element.key}
onClick={onClick}
>
<div className="ds-flex ds-items-center">
<span className="ds-flex ds-items-center">
{element.showIcon && (
<svg
width="18"
Expand All @@ -117,7 +117,7 @@ export function Menu(props) {
</svg>
)}
{element.value}
</div>
</span>
</Component>
);
})}
Expand Down

0 comments on commit 753c6f8

Please sign in to comment.