Skip to content

Commit 0f7749b

Browse files
jeremymanningclaude
andcommitted
Update tutorial dismiss confirmation buttons to Cancel/Exit
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 447bcdf commit 0f7749b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/ui/tutorial.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ function showDismissConfirmation() {
462462
padding: '8px 20px', borderRadius: '8px', border: '1.5px solid var(--color-border, #ccc)',
463463
background: 'var(--color-bg, #fff)', cursor: 'pointer', fontSize: '0.9rem',
464464
});
465-
cancelBtn.textContent = 'Continue Tutorial';
465+
cancelBtn.textContent = 'Cancel';
466466
cancelBtn.addEventListener('click', () => overlay.remove());
467467

468468
const exitBtn = document.createElement('button');
@@ -471,7 +471,7 @@ function showDismissConfirmation() {
471471
background: 'var(--color-primary, #00693e)', color: '#fff',
472472
cursor: 'pointer', fontSize: '0.9rem',
473473
});
474-
exitBtn.textContent = 'Exit Tutorial';
474+
exitBtn.textContent = 'Exit';
475475
exitBtn.addEventListener('click', () => { overlay.remove(); dismissTutorial(); });
476476

477477
btnRow.appendChild(cancelBtn);

0 commit comments

Comments
 (0)