Skip to content

Commit e8588a5

Browse files
authored
Merge pull request #1368 from data-driven-forms/ant-d-wizard
fix(atn): fix wizard onCancel typo
2 parents 192ff44 + ede347e commit e8588a5

File tree

1 file changed

+1
-1
lines changed
  • packages/ant-component-mapper/src/wizard

1 file changed

+1
-1
lines changed

packages/ant-component-mapper/src/wizard/wizard.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const WizardInternal = ({
3333

3434
return (
3535
<div onKeyDown={onKeyDown} {...WizardProps}>
36-
{title && <Modal title={title} onCancel={formOptions.onCanel} {...TitleProps} />}
36+
{title && <Modal title={title} onCancel={formOptions.onCancel} {...TitleProps} />}
3737
{stepsInfo && (
3838
<Steps onChange={jumpToStep} current={activeStepIndex} {...StepProps}>
3939
{stepsInfo.map((step, stepIndex) => (

0 commit comments

Comments
 (0)