Skip to content

Commit

Permalink
fix: story name
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinWeb authored Jan 29, 2024
1 parent 89c499f commit 597e286
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/Form/steps/src/Steps.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,14 @@ const Template: Story<StepsProps> = ({ classModifier, className, mode }) => (
</Steps>
);

export const OldStepsStory = Template.bind({}) as typeof Template;
export const NewStepsStory = Template.bind({}) as typeof Template;
NewStepsStory.storyName = 'New Design Steps';
NewStepsStory.args = {
classModifier: '',
className: 'af-steps-new',
};

export const NewStepsStory = Template.bind({}) as typeof Template;
export const OldStepsStory = Template.bind({}) as typeof Template;
OldStepsStory.storyName = 'Old Design Steps';
OldStepsStory.args = {
classModifier: '',
Expand Down

0 comments on commit 597e286

Please sign in to comment.