Skip to content

Commit

Permalink
Merge pull request #31 from fredflev/fl-fix-svg-xmlns-url
Browse files Browse the repository at this point in the history
Use http in svg xmlns url instead of https in MenuIcon.astro
  • Loading branch information
surjithctly authored Nov 18, 2024
2 parents c3e852b + e7c7696 commit 83fd33f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "astro-navbar",
"version": "2.3.6",
"version": "2.3.7",
"description": "Responsive Mobile Navigation with Dropdown in Astro",
"type": "module",
"exports": "./index.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/components/MenuIcon.astro
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const { class: className, ...rest } = Astro.props;
width="24"
height="24"
viewBox="0 0 24 24"
xmlns="https://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
{...rest}>
<title>Toggle Menu</title>
<path
Expand Down

0 comments on commit 83fd33f

Please sign in to comment.