From e007dc1d247e6631a37e1ec13edf62dc64ce490b Mon Sep 17 00:00:00 2001 From: Amy Wang Date: Tue, 25 May 2021 03:23:52 +0000 Subject: [PATCH] Fix https vs. http typo --- components/Navbar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Navbar.tsx b/components/Navbar.tsx index ae9fecd3..ce2fee77 100644 --- a/components/Navbar.tsx +++ b/components/Navbar.tsx @@ -71,7 +71,7 @@ const menu: NavLink[] = [ function NavItem(props: NavLink) { const router = useRouter(); const externalLink = - props.route.includes("https://") || props.route.includes("https://"); + props.route.includes("http://") || props.route.includes("https://"); return ( <> {externalLink ? (