Fix JS console errors
This commit is contained in:
parent
c8851d552f
commit
b30fd62f48
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ const StepperWizard = ({children}) => {
|
||||||
<Box sx={{ width: '100%', height: '100%', display: "flex", flexDirection: "column", overflow: "hidden" }}>
|
<Box sx={{ width: '100%', height: '100%', display: "flex", flexDirection: "column", overflow: "hidden" }}>
|
||||||
<Stepper activeStep={step} sx={{ paddingRight: '3vw', paddingLeft: '3vw', marginBottom: '2vw' }}>
|
<Stepper activeStep={step} sx={{ paddingRight: '3vw', paddingLeft: '3vw', marginBottom: '2vw' }}>
|
||||||
{children.map(child => (
|
{children.map(child => (
|
||||||
<Tooltip title={child.props.tooltip}>
|
<Tooltip title={child.props.tooltip} key={child.props.label}>
|
||||||
<Step key={child.props.label}>
|
<Step key={child.props.label}>
|
||||||
<StepLabel>{child.props.label}</StepLabel>
|
<StepLabel>{child.props.label}</StepLabel>
|
||||||
</Step>
|
</Step>
|
||||||
|
|
Loading…
Reference in a new issue