Skip to content

Commit

Permalink
[Fix]로그인 헤더 문자열 삭제
Browse files Browse the repository at this point in the history
알림 아이콘, 프로필 아이콘,로그아웃 버튼 오른쪽 문자열 삭제
Issues #15
  • Loading branch information
김병현 authored and 김병현 committed Sep 8, 2023
1 parent 58d9824 commit 09f18b7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions client/src/components/Headers/LoginHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ const LoginHeader: React.FC<LoginHeaderProps> = ({ onLogoutClick }) => {
<SearchBar value={searchValue} onChange={handleSearchChange} />
<UserActions>
<NotificationButton>
<img src={AlarmImage} alt="Notification" /> // 알림 이미지
<img src={AlarmImage} alt="Notification" />
</NotificationButton>
<ProfileButton>
<ProfileImage src={SampleProfile} /> // 프로필 이미지
<ProfileImage src={SampleProfile} />
</ProfileButton>
<LogoutButton onClick={onLogoutClick}>{logoutText}</LogoutButton> // 로그아웃 버튼
<LogoutButton onClick={onLogoutClick}>{logoutText}</LogoutButton>
</UserActions>
</HeaderContainer>
);
Expand Down

0 comments on commit 09f18b7

Please sign in to comment.