Skip to content

Commit

Permalink
fix: 갤러리 탭 임시 숨김
Browse files Browse the repository at this point in the history
  • Loading branch information
cjy3458 committed Jan 27, 2025
1 parent 697bcf0 commit fcae18a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/common/header/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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' },
Expand All @@ -63,7 +63,7 @@ const NavBar = () => {
</Link>
</LogoWrapper>
<ButtonWrapper>
<HoverButton hover={hover} dropdown={dropdown} />
{/* <HoverButton hover={hover} dropdown={dropdown} /> */}
{menuDataSelector().map(({ title, routing, target }, index) => (
<NavButton key={index + routing} title={title} routing={routing} target={target} />
))}
Expand Down

0 comments on commit fcae18a

Please sign in to comment.