From 0afc197703764e87dc398b62462d3948da1d0e4a Mon Sep 17 00:00:00 2001 From: Charisma Kausar <68203159+ckcherry23@users.noreply.github.com> Date: Thu, 12 Oct 2023 11:24:03 +0800 Subject: [PATCH] refactor: Remove console.log in navbar --- frontend/src/components/common/navbar.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/src/components/common/navbar.tsx b/frontend/src/components/common/navbar.tsx index 469b14a7..4c2d5dfe 100644 --- a/frontend/src/components/common/navbar.tsx +++ b/frontend/src/components/common/navbar.tsx @@ -35,7 +35,6 @@ export default function Navbar() { const currentPage = router.pathname; useEffect(() => { - console.log(currentPage); if (currentPage === "/interviews") { setActiveTab(TabsOptions.INTERVIEWS); } else if (currentPage === "/questions") {