()
| 129 | const hasMoreSteps = steps.length - 1 > activeStep; |
| 130 | |
| 131 | const onBack = () => { |
| 132 | if (activeStep === 0) { |
| 133 | return onClose(); |
| 134 | } |
| 135 | return goToPrevious(); |
| 136 | }; |
| 137 | |
| 138 | const handleNextClick = () => { |
| 139 | if (advanceType === "submit") { |
nothing calls this directly
no test coverage detected