* Go to next step or complete
()
| 136 | * Go to next step or complete |
| 137 | */ |
| 138 | private next(): void { |
| 139 | if (this.currentStep < TUTORIAL_STEPS.length - 1) { |
| 140 | this.currentStep++; |
| 141 | this.renderStep(); |
| 142 | } else { |
| 143 | this.complete(); |
| 144 | } |
| 145 | } |
| 146 | |
| 147 | /** |
| 148 | * Render the dots indicator |
no test coverage detected