Skip to content

Commit

Permalink
[Progress Steps]: remove unnecessary space (#4126)
Browse files Browse the repository at this point in the history
* fix(progress-steps): remove unnecessary space

* fix(progress-steps): add changeset

* fix(progress-steps): fix typo
  • Loading branch information
PixeledCode authored Oct 25, 2024
1 parent 636a48d commit 69d8d7c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .changeset/warm-pots-rush.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@twilio-paste/progress-steps": patch
"@twilio-paste/core": patch
---

[Progress Steps]: remove unnecessary space
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const ProgressStepError = React.forwardRef<HTMLDivElement, ProgressStepEr
<ProgressErrorIcon decorative={false} title={i18nErrorLabel} />
</Box>

<Box textAlign="left">{children} </Box>
<Box textAlign="left">{children}</Box>
</Box>
</div>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const ProgressStepIncomplete = React.forwardRef<HTMLDivElement, ProgressS
<Box display="flex" flexDirection="column" alignItems="center">
<ProgressIncompleteIcon decorative={false} title={i18nIncompleteLabel} />
</Box>
<Box textAlign="left">{children} </Box>
<Box textAlign="left">{children}</Box>
</Box>
</div>
);
Expand Down

0 comments on commit 69d8d7c

Please sign in to comment.