()
| 424 | |
| 425 | // Navigate to next tutorial step |
| 426 | export function nextTutorialStep() { |
| 427 | if (currentStep < tutorialSteps.length - 1) { |
| 428 | currentStep++; |
| 429 | showTutorialStep(); |
| 430 | } else { |
| 431 | closeTutorial(); |
| 432 | } |
| 433 | } |
| 434 | |
| 435 | // Navigate to previous tutorial step |
| 436 | export function previousTutorialStep() { |
no test coverage detected