Fix JS console errors

This commit is contained in:
Matthew Northcott 2023-03-28 13:00:29 +13:00
parent c8851d552f
commit b30fd62f48

View file

@ -29,7 +29,7 @@ const StepperWizard = ({children}) => {
<Box sx={{ width: '100%', height: '100%', display: "flex", flexDirection: "column", overflow: "hidden" }}>
<Stepper activeStep={step} sx={{ paddingRight: '3vw', paddingLeft: '3vw', marginBottom: '2vw' }}>
{children.map(child => (
<Tooltip title={child.props.tooltip}>
<Tooltip title={child.props.tooltip} key={child.props.label}>
<Step key={child.props.label}>
<StepLabel>{child.props.label}</StepLabel>
</Step>