From bba2e4c77a017e2ed5a170d3252b7c48372370f7 Mon Sep 17 00:00:00 2001 From: Siddharth Kshetrapal Date: Tue, 28 Jun 2022 23:19:58 +0530 Subject: [PATCH] Change false to undefined (#2122) --- docs/content/NavList.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/NavList.mdx b/docs/content/NavList.mdx index 61f2cd0bf8f..b016fa8108d 100644 --- a/docs/content/NavList.mdx +++ b/docs/content/NavList.mdx @@ -184,7 +184,7 @@ function NavItem({to, children}) { const resolved = useResolvedPath(to) const isCurrent = useMatch({path: resolved.pathname, end: true}) return ( - + {children} )