Update deployment config #96

Merged
mattn merged 2 commits from matt/prod into main 2023-03-28 13:14:53 +13:00
Showing only changes of commit b30fd62f48 - Show all commits

View file

@ -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>