Skip to content

Commit

Permalink
!HOTFIX(nav-bar): 렌더링될 html 태그 변경, 클릭 핸들러 연결점 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
joojjang authored and Dobbymin committed Oct 1, 2024
1 parent e4b408e commit 63d3ba4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/features/layout/nav-bar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ const NavBar = () => {
};

return (
<Wrapper as='nav'>
<Wrapper as='nav'>
{navBarData.map((item) => (
<Tab key={item.title} onClick={() => handleNav(item.path)}>
<Tab as='a' key={item.title} onClick={() => handleNav(item.path)}>
<IconImage src={item.icon} alt={item.title} />
</Tab>
))}
Expand Down

0 comments on commit 63d3ba4

Please sign in to comment.