Skip to content

Commit

Permalink
fix: control 타입이 string인 필드의 잘못된 타입 네임을 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
fecapark committed Sep 21, 2024
1 parent 6c6e479 commit 075a8dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Checkbox/Checkbox.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const meta: Meta<typeof Checkbox> = {
description: 'React.ReactNode 타입의 children을 받습니다.',
type: { name: 'other', value: '', required: true },
control: {
type: 'string',
type: 'text',
},
defaultValue: '체크박스',
},
Expand Down
2 changes: 1 addition & 1 deletion src/components/Chip/Chip.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const meta: Meta<typeof Chip> = {
description: 'React.ReactNode 타입의 children을 받습니다.',
type: { name: 'other', value: '', required: true },
control: {
type: 'string',
type: 'text',
},
defaultValue: '체크박스',
},
Expand Down

0 comments on commit 075a8dc

Please sign in to comment.