Skip to content

Commit

Permalink
chore: topbar에서 사용되지 않는 검색창 및 프로필 사진 숨김 처리
Browse files Browse the repository at this point in the history
  • Loading branch information
chysis committed Aug 9, 2024
1 parent e368e9d commit 52a4383
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions frontend/src/components/layouts/Topbar/index.tsx
Original file line number Diff line number Diff line change
@@ -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;
Expand All @@ -18,8 +18,8 @@ const Topbar = ({ openSidebar }: TopbarProps) => {
<Logo />
</S.Container>
<S.Container>
<SearchInput $width="30rem" $height="3.6rem" placeholder={USER_SEARCH_PLACE_HOLDER} />
<S.UserProfile src={UserProfileIcon} alt="로그인한 사용자 깃허브 프로필" />
{/* <SearchInput $width="30rem" $height="3.6rem" placeholder={USER_SEARCH_PLACE_HOLDER} /> */}
{/* <S.UserProfile src={UserProfileIcon} alt="로그인한 사용자 깃허브 프로필" /> */}
</S.Container>
</S.Layout>
);
Expand Down

0 comments on commit 52a4383

Please sign in to comment.