Skip to content
This repository has been archived by the owner on Mar 2, 2024. It is now read-only.

Commit

Permalink
fix: navlink minor bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
gustaveWPM committed Jan 16, 2024
1 parent c117159 commit 9e1b5a0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/KasaNavbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ function navbarItemsGenerator(): ReactElement[] {
const rTo = getPath();
return (
<li key={`navbar-item-${rTo}-${getTitle()}`}>
<NavLink to={rTo}>{getTitle()}</NavLink>
<NavLink to={rTo} end>
{getTitle()}
</NavLink>
</li>
);
});
Expand Down

1 comment on commit 9e1b5a0

@vercel
Copy link

@vercel vercel bot commented on 9e1b5a0 Jan 16, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

oc-kasa – ./

oc-kasa-lyart.vercel.app
oc-kasa-gustavewpm.vercel.app
oc-kasa-git-master-gustavewpm.vercel.app

Please sign in to comment.