links styling fix (no underline)

This commit is contained in:
2026-03-04 20:29:53 -06:00
parent fd13b72380
commit 46ed382d56
3 changed files with 5 additions and 4 deletions

View File

@@ -6,5 +6,5 @@ export function Route(props: PropsWithChildren & {path: Path}) {
const {path, children} = props;
const router = useRouter();
return router.current === path ? <>{children}</> : <></>
return router.current.toLowerCase() === path ? <>{children}</> : <></>
}