Skip to content

Commit

Permalink
style: 헤더 컴포넌트 검색 아이콘 주석처리
Browse files Browse the repository at this point in the history
  • Loading branch information
dlwl98 committed Nov 27, 2023
1 parent 706ad73 commit cef10b2
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/components/Header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import { PATH_NAME } from '@consts/pathName';
import bellIcon from '@assets/bell.svg';
import leftArrowIcon from '@assets/leftArrow.svg';
import logoSvg from '@assets/logoSvg.svg';
import searchIcon from '@assets/search.svg';

import { Badge } from './Badge';
import {
Expand Down Expand Up @@ -53,9 +52,9 @@ export const Header = ({
navigate(-1);
};

const handleSearchIconClick = () => {
navigate('/search');
};
// const handleSearchIconClick = () => {
// navigate('/search');
// };

const handleBellIconClick = () => {
navigate('/notification');
Expand Down Expand Up @@ -94,9 +93,9 @@ export const Header = ({
) : loginInfo ? (
<RightSideContainer className={isRightContainer ? '' : 'invisible'}>
<RightSideIconWrapper>
<RightSideIcon onClick={() => handleSearchIconClick()}>
{/* <RightSideIcon onClick={() => handleSearchIconClick()}>
<img src={searchIcon} alt="" />
</RightSideIcon>
</RightSideIcon> */}
</RightSideIconWrapper>
<RightSideIconWrapper>
<BellIcon onClick={() => handleBellIconClick()}>
Expand Down

0 comments on commit cef10b2

Please sign in to comment.