Skip to content

Commit a84bfad

Browse files
committed
fix format
1 parent 7695973 commit a84bfad

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

docs/data/material/components/steppers/HorizontalNonLinearStepper.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,11 @@ export default function HorizontalNonLinearStepper() {
6464
<Stepper nonLinear activeStep={activeStep}>
6565
{steps.map((label, index) => (
6666
<Step key={label} completed={completed[index]}>
67-
<StepButton aria-controls="stepper-content" color="inherit" onClick={handleStep(index)}>
67+
<StepButton
68+
aria-controls="stepper-content"
69+
color="inherit"
70+
onClick={handleStep(index)}
71+
>
6872
{label}
6973
</StepButton>
7074
</Step>

docs/data/material/components/steppers/HorizontalNonLinearStepper.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,11 @@ export default function HorizontalNonLinearStepper() {
6666
<Stepper nonLinear activeStep={activeStep}>
6767
{steps.map((label, index) => (
6868
<Step key={label} completed={completed[index]}>
69-
<StepButton aria-controls='stepper-content' color="inherit" onClick={handleStep(index)}>
69+
<StepButton
70+
aria-controls="stepper-content"
71+
color="inherit"
72+
onClick={handleStep(index)}
73+
>
7074
{label}
7175
</StepButton>
7276
</Step>

0 commit comments

Comments
 (0)