From f0f015531a44b94eaea79916719a135a349fb187 Mon Sep 17 00:00:00 2001 From: Fe <64690761+chysis@users.noreply.github.com> Date: Mon, 12 Aug 2024 10:37:49 +0900 Subject: [PATCH] =?UTF-8?q?[FE]=20chore:=20topbar=EC=97=90=EC=84=9C=20?= =?UTF-8?q?=EC=82=AC=EC=9A=A9=EB=90=98=EC=A7=80=20=EC=95=8A=EB=8A=94=20?= =?UTF-8?q?=EA=B2=80=EC=83=89=EC=B0=BD=20=EB=B0=8F=20=ED=94=84=EB=A1=9C?= =?UTF-8?q?=ED=95=84=20=EC=82=AC=EC=A7=84=20=EC=88=A8=EA=B9=80=20=EC=B2=98?= =?UTF-8?q?=EB=A6=AC=20(#281)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: topbar에서 사용되지 않는 검색창 및 프로필 사진 숨김 처리 * chore: topbar에서 캐릭터 이미지가 보이지 않도록 수정 --- .../layouts/Topbar/components/Logo/index.tsx | 4 ++-- frontend/src/components/layouts/Topbar/index.tsx | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/frontend/src/components/layouts/Topbar/components/Logo/index.tsx b/frontend/src/components/layouts/Topbar/components/Logo/index.tsx index 196ac3d28..79232cf72 100644 --- a/frontend/src/components/layouts/Topbar/components/Logo/index.tsx +++ b/frontend/src/components/layouts/Topbar/components/Logo/index.tsx @@ -1,11 +1,11 @@ -import LogoIcon from '../../../../../assets/logo.svg'; +// import LogoIcon from '../../../../../assets/logo.svg'; import * as S from './styles'; const Logo = () => { return ( - 로고 아이콘 + {/* 로고 아이콘 */} REVIEW ME diff --git a/frontend/src/components/layouts/Topbar/index.tsx b/frontend/src/components/layouts/Topbar/index.tsx index 169f7aeeb..79664214a 100644 --- a/frontend/src/components/layouts/Topbar/index.tsx +++ b/frontend/src/components/layouts/Topbar/index.tsx @@ -1,11 +1,11 @@ -import UserProfileIcon from '../../../assets/userProfile.svg'; -import { SearchInput } from '../../common'; +// import UserProfileIcon from '../../../assets/userProfile.svg'; +// import { SearchInput } from '../../common'; import Logo from './components/Logo'; import SidebarOpenButton from './components/SidebarOpenButton'; import * as S from './styles'; -const USER_SEARCH_PLACE_HOLDER = '사용자를 입력해주세요.'; +// const USER_SEARCH_PLACE_HOLDER = '사용자를 입력해주세요.'; interface TopbarProps { openSidebar: () => void; @@ -18,8 +18,8 @@ const Topbar = ({ openSidebar }: TopbarProps) => { - - + {/* */} + {/* */} );