Skip to content

Commit

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

export const OldStepsStory = Template.bind({}) as typeof Template;
OldStepsStory.storyName = 'Old Design Steps';
OldStepsStory.args = {
NewStepsStory.storyName = 'New Design Steps';

Check failure on line 75 in packages/Form/steps/src/Steps.stories.tsx

View workflow job for this annotation

GitHub Actions / build

'NewStepsStory' was used before it was defined
NewStepsStory.args = {

Check failure on line 76 in packages/Form/steps/src/Steps.stories.tsx

View workflow job for this annotation

GitHub Actions / build

'NewStepsStory' was used before it was defined
classModifier: '',
className: 'af-steps-new',
};

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

0 comments on commit 89c499f

Please sign in to comment.