Skip to content

Commit

Permalink
Update HeaderMenu.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
Giuseppetm committed Jan 1, 2024
1 parent 15b3747 commit 623f587
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Header/HeaderMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ const HeaderMenu = () => {
<div className="mb-3">
{dropdownOptions.map((x, i) =>
<a
href={String(x.key)}
href={`/${x.key === "home" ? "" : getHref(x.key as ItemsKeys)}`}
className="d-flex text-decoration-none menu-item mb-2 pr-4 pl-4 pt-1 pb-2"
onClick={(e) => { preventDefault(e); handleDropdownValueChange(x) }}
key={i}
Expand Down

0 comments on commit 623f587

Please sign in to comment.