We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb9ff1a commit 3ae99f8Copy full SHA for 3ae99f8
packages/wizard/src/Wizard/Wizard.tsx
@@ -33,10 +33,8 @@ export const Wizard = CompoundComponent(
33
);
34
35
// Controlled/Uncontrolled activeStep value
36
- const {
37
- value: activeStep,
38
- updateValue: setActiveStep,
39
- } = useControlled<number>(activeStepProp, onStepChange, 0);
+ const { value: activeStep, updateValue: setActiveStep } =
+ useControlled<number>(activeStepProp, onStepChange, 0);
40
41
if (
42
activeStepProp &&
0 commit comments