Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
rachelhox committed Feb 7, 2022
1 parent 0b0e159 commit 301c1e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Layout/LeftMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ const LeftMenu: React.FC<LeftMenuProps> = ({ activeItem, isMenuExpanded, setIsMe
{items.map((item) => {
const selected = item.href === activeItem
return (
<Link key={item.title} href={item.href} passHref>
<Link key={item.title} href={item.href} as={`${item.href}`} passHref>
<ListItem
selected={selected}
className={classes.menuItem}
Expand Down

0 comments on commit 301c1e4

Please sign in to comment.