()
| 121 | }; |
| 122 | |
| 123 | const increaseSlide = () => { |
| 124 | if (currentStep === steps.length - 1) { |
| 125 | closeTutorial(); |
| 126 | return; |
| 127 | } |
| 128 | |
| 129 | setCurrentStep(currentStep + 1); |
| 130 | }; |
| 131 | |
| 132 | const decreaseSlide = () => { |
| 133 | if (currentStep === 0) return; |
no test coverage detected