()
| 113 | const [currentStep, setCurrentStep] = useState(1) |
| 114 | |
| 115 | const handleNext = () => { |
| 116 | setCurrentStep((prev) => Math.min(prev + 1, steps.length - 1)) |
| 117 | } |
| 118 | |
| 119 | const handlePrev = () => { |
| 120 | setCurrentStep((prev) => Math.max(prev - 1, 0)) |
nothing calls this directly
no outgoing calls
no test coverage detected