Skip to content

Commit 69d8d7c

Browse files
authored
[Progress Steps]: remove unnecessary space (#4126)
* fix(progress-steps): remove unnecessary space * fix(progress-steps): add changeset * fix(progress-steps): fix typo
1 parent 636a48d commit 69d8d7c

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.changeset/warm-pots-rush.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"@twilio-paste/progress-steps": patch
3+
"@twilio-paste/core": patch
4+
---
5+
6+
[Progress Steps]: remove unnecessary space

packages/paste-core/components/progress-steps/src/ProgressStepError.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export const ProgressStepError = React.forwardRef<HTMLDivElement, ProgressStepEr
3535
<ProgressErrorIcon decorative={false} title={i18nErrorLabel} />
3636
</Box>
3737

38-
<Box textAlign="left">{children} </Box>
38+
<Box textAlign="left">{children}</Box>
3939
</Box>
4040
</div>
4141
);

packages/paste-core/components/progress-steps/src/ProgressStepIncomplete.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export const ProgressStepIncomplete = React.forwardRef<HTMLDivElement, ProgressS
4646
<Box display="flex" flexDirection="column" alignItems="center">
4747
<ProgressIncompleteIcon decorative={false} title={i18nIncompleteLabel} />
4848
</Box>
49-
<Box textAlign="left">{children} </Box>
49+
<Box textAlign="left">{children}</Box>
5050
</Box>
5151
</div>
5252
);

0 commit comments

Comments
 (0)