From fcae18ab506670bce1960fe8851f532b27160f5a Mon Sep 17 00:00:00 2001 From: CJY Date: Mon, 27 Jan 2025 23:39:27 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EA=B0=A4=EB=9F=AC=EB=A6=AC=20=ED=83=AD?= =?UTF-8?q?=20=EC=9E=84=EC=8B=9C=20=EC=88=A8=EA=B9=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/common/header/NavBar.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/common/header/NavBar.tsx b/src/components/common/header/NavBar.tsx index 147bff3..ebdbd13 100644 --- a/src/components/common/header/NavBar.tsx +++ b/src/components/common/header/NavBar.tsx @@ -38,7 +38,7 @@ const NavBar = () => { const menuDataSelector = (): IMenu[] => { const resultArray = [ - { title: '프로젝트', routing: '/project' }, + // { title: '프로젝트', routing: '/project' }, { title: '위키', routing: 'https://wiki.cau-likelion.org', target: '_blank' }, { title: '피드', routing: 'https://blog.cau-likelion.org', target: '_blank' }, { title: isLogin ? 'MY' : 'Log in', routing: isLogin ? '/mypage' : '/login' }, @@ -63,7 +63,7 @@ const NavBar = () => { - + {/* */} {menuDataSelector().map(({ title, routing, target }, index) => ( ))}