Fixed field parameters.

This commit is contained in:
Mike Cao 2025-03-27 15:33:24 -07:00
parent 0f6cdf8b80
commit 7d2c361725
12 changed files with 90 additions and 88 deletions

View file

@ -45,13 +45,13 @@ export function Nav(props: any) {
<SideNavSection>
{links.map(({ href, label, icon }) => {
return (
<Link key={href} href={href}>
<Link key={href} href={href} role="button">
<SideNavItem label={label} icon={icon} isSelected={pathname.startsWith(href)} />
</Link>
);
})}
</SideNavSection>
<SideNavSection alignSelf="end"></SideNavSection>
<SideNavSection alignSelf="end">{``}</SideNavSection>
</SideNav>
);
}