fix: #57
Some checks failed
Accessibility Checks / a11y-audit (pull_request) Successful in 14s
Smoke Test / smoke (pull_request) Failing after 27s

This commit is contained in:
Alexander Whitestone
2026-04-14 23:27:32 -04:00
parent 729343e503
commit 46bc299ab7
4 changed files with 60 additions and 3 deletions

View File

@@ -249,3 +249,12 @@ function startTutorial() {
// Small delay so the page renders first
setTimeout(() => renderTutorialStep(0), 300);
}
function resetTutorial() {
try {
localStorage.removeItem(TUTORIAL_KEY);
} catch (e) {
// silent fail
}
startTutorial();
}