Skip to content

Commit

Permalink
fix: props type error
Browse files Browse the repository at this point in the history
  • Loading branch information
sohee-K committed Jun 13, 2024
1 parent b368959 commit c2b8607
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apps/docs/src/stories/Dialog.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export const DesktopSingleLabel: StoryObj = {
checkBoxOptions: {
label: '다시는 보지 않기',
checked: false,
size: 'small',
size: 'sm',
color: 'white',
onChange: (e) => checkCheckBox(e.target.checked),
},
Expand Down Expand Up @@ -168,7 +168,7 @@ export const DesktopSingleLong: StoryObj = {
checkBoxOptions: {
label: '다시는 보지 않기',
checked: false,
size: 'small',
size: 'sm',
color: 'white',
onChange: (e) => checkCheckBox(e.target.checked),
},
Expand Down Expand Up @@ -259,7 +259,7 @@ export const MobileSingleLabel: StoryObj = {
checkBoxOptions: {
label: '다시는 보지 않기',
checked: false,
size: 'small',
size: 'sm',
color: 'white',
onChange: (e) => checkCheckBox(e.target.checked),
},
Expand Down Expand Up @@ -323,7 +323,7 @@ export const MobileSingleLong: StoryObj = {
checkBoxOptions: {
label: '다시는 보지 않기',
checked: false,
size: 'small',
size: 'sm',
color: 'white',
onChange: (e) => checkCheckBox(e.target.checked),
},
Expand Down

0 comments on commit c2b8607

Please sign in to comment.