Skip to content

Commit

Permalink
fix: remove console
Browse files Browse the repository at this point in the history
  • Loading branch information
ptyoiy committed May 12, 2024
1 parent 67b7773 commit d212bfe
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/components/BottomNavbar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,7 @@ const menuList = new Map<string, [Icon, NavLinkList]>([
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 (
<MobileNavbar.Wrapper>
<MobileNavbar.Items>
Expand Down

0 comments on commit d212bfe

Please sign in to comment.