Skip to content

Commit

Permalink
chore: run prettier-check --write to format code
Browse files Browse the repository at this point in the history
  • Loading branch information
paulo-asilva committed Dec 4, 2024
1 parent e759b34 commit f745e12
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
8 changes: 6 additions & 2 deletions src/community/__stories__/blocks-story.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,11 @@ export const BlockSimple: StoryComponent<SimpleBlockArgs> = ({description, label
return (
<ResponsiveLayout>
<Box paddingY={24} dataAttributes={{testid: 'simple-block'}}>
<SimpleBlock description={description} label={label} image={<Image height={40} src={imgExample} />} />
<SimpleBlock
description={description}
label={label}
image={<Image height={40} src={imgExample} />}
/>
</Box>
</ResponsiveLayout>
);
Expand Down Expand Up @@ -257,4 +261,4 @@ BlockProgress.args = {
value: '20',
text: 'text',
description: 'description',
};
};
6 changes: 5 additions & 1 deletion src/community/blocks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,11 @@ export const BlockSimple: StoryComponent<SimpleBlockArgs> = ({description, label
return (
<ResponsiveLayout>
<Box paddingY={24} dataAttributes={{testid: 'simple-block'}}>
<SimpleBlock description={description} label={label} image={<Image height={40} src={imgExample} />} />
<SimpleBlock
description={description}
label={label}
image={<Image height={40} src={imgExample} />}
/>
</Box>
</ResponsiveLayout>
);
Expand Down

0 comments on commit f745e12

Please sign in to comment.