Skip to content

Commit

Permalink
refactor: 헤더에 가게정보만 보이도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
chaeseungyun committed Mar 22, 2024
1 parent adaa78f commit ec85bee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/component/common/Header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ function Header() {
key={subMenu.title}
>
<Link to={subMenu.link}>
{subMenu.title}
{subMenu.title === '가게정보' && subMenu.title}
</Link>
</li>
))}
Expand Down Expand Up @@ -238,7 +238,7 @@ function Header() {
{panelMenuList?.map((menu) => (
<li className={styles.megamenu__menu} key={menu.title}>
<Link className={styles.megamenu__link} to={menu.link}>
{menu.title}
{menu.title === '가게정보' && menu.title}
</Link>
</li>
))}
Expand Down

0 comments on commit ec85bee

Please sign in to comment.