Skip to content

Commit

Permalink
refactor: 필요없는 코드 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
feb-dain committed May 15, 2023
1 parent 6f13553 commit bb22c44
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/components/common/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const Header = ({ title }: Props) => {
return (
<S.Header>
<S.Wrapper>
<CartIcon fill="#fff" aria-label="logo-cart-icon" />
<CartIcon aria-label="logo-cart-icon" />
<span>{title}</span>
<Cart />
</S.Wrapper>
Expand All @@ -34,6 +34,7 @@ const S = {
width: 44px;
height: 36px;
margin-right: 20px;
fill: #fff;
}
@media (max-width: 768px) {
Expand Down
3 changes: 1 addition & 2 deletions src/stories/components/common/Input.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,10 @@ const meta = {

argTypes: {
css: {
options: {},
control: {
type: 'radio',
},
description: 'input style을 선택할 수 있습니다.',
description: 'input을 꾸밀 수 있습니다.',
},

onChange: {
Expand Down

0 comments on commit bb22c44

Please sign in to comment.