1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-05-15 21:34:26 -04:00

bump next to stable

This commit is contained in:
2022-07-08 13:24:38 -04:00
parent 295301aa9e
commit 54d0b6eac0
14 changed files with 155 additions and 166 deletions
+2 -10
View File
@@ -66,21 +66,13 @@ const MenuItem = ({ icon: ItemIcon, href, text, current, className }: MenuItemPr
// allow both navigational links and/or other interactive react components (e.g. the theme toggle)
if (href) {
return (
<MenuLink
href={href}
prefetch={false}
className={className}
current={current}
title={text}
underline={false}
aria-label={text}
>
<MenuLink href={href} className={className} current={current} title={text} underline={false} aria-label={text}>
{linkContent}
</MenuLink>
);
}
return <>{linkContent}</>;
return linkContent;
};
export default MenuItem;