From e6aba04b79730fb908887182895a41b6d6a65078 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=EC=84=B8=EB=AF=BC?= <89172499+semnil5202@users.noreply.github.com> Date: Thu, 21 Sep 2023 15:26:33 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20merge=20=EA=B3=BC=EC=A0=95=20=EC=A4=91?= =?UTF-8?q?=20=EC=B6=A9=EB=8F=8C=20=ED=95=B4=EA=B2=B0=20=EC=98=A4=EB=A5=98?= =?UTF-8?q?=20=EC=88=98=EC=A0=95=20(#480)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/Layout/Navbar.tsx | 36 ++++++++++++----------- 1 file changed, 19 insertions(+), 17 deletions(-) diff --git a/frontend/src/components/Layout/Navbar.tsx b/frontend/src/components/Layout/Navbar.tsx index 7a3b95e5..085afe28 100644 --- a/frontend/src/components/Layout/Navbar.tsx +++ b/frontend/src/components/Layout/Navbar.tsx @@ -64,23 +64,25 @@ const Navbar = ({ $layoutWidth }: NavBarProps) => { const { routingHandlers } = useNavigator(); const { navbarHighlights } = useContext(NavbarHighlightsContext); return ( - - {NAV_ITEMS.map((item) => { - return ( - routingHandlers[item.key]()} - $layoutWidth={$layoutWidth} - /> - ); - })} + <> + + {NAV_ITEMS.map((item) => { + return ( + routingHandlers[item.key]()} + $layoutWidth={$layoutWidth} + /> + ); + })} +