Skip to content

Commit

Permalink
story: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jeangovil authored and jongomez committed Oct 5, 2023
1 parent 82d4975 commit cdc6b5a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const Uncontrolled: Story<DatePickerProps> = ({ ...args }) => {
return <DatePicker {...args}>DatePicker</DatePicker>
}

export const Contolled: Story<DatePickerProps> = ({ ...args }) => {
export const Controlled: Story<DatePickerProps> = ({ ...args }) => {
return <DatePicker {...args}>DatePicker</DatePicker>
}

Expand All @@ -35,7 +35,7 @@ Uncontrolled.args = {
size: 'large',
}

Contolled.args = {
Controlled.args = {
supportingText: 'Supporting text',
disabled: false,
error: false,
Expand Down

0 comments on commit cdc6b5a

Please sign in to comment.