diff --git a/src/components/BottomNavbar/index.tsx b/src/components/BottomNavbar/index.tsx index 021cdb0..3398b55 100644 --- a/src/components/BottomNavbar/index.tsx +++ b/src/components/BottomNavbar/index.tsx @@ -27,11 +27,7 @@ const menuList = new Map([ const BottomNavbar = () => { const navigate = useNavigate(); const location = useLocation(); - console.log({ location }) - const match = (link: string) => { - console.log(location.pathname, link); - return location.pathname.includes(link) - }; + const match = (link: string) => location.pathname.includes(link); return (