@@ -433,14 +433,10 @@ function vvGoNext(e) {
window.location.href = _vvRedirect || '?tab=scheduler';
}
-// Label the exit after the place it actually leads, so the link is not a surprise. Derived from
-// the redirect the save returned, not from the role guessed again on this side.
-function vvLabelExit() {
- const el = document.getElementById('vv-exit-link');
- if (!el) return;
- const target = /tab=partnership/.test(_vvRedirect || '') ? 'Partnership' : 'Scheduler';
- el.textContent = `Go to ${target} →`;
-}
+// The exit link is a plain faint "Skip →" and stays that way. It used to relabel itself "Go to
+// Scheduler/Partnership", which read as the intended way out — but the wizard now ends in the
+// completion card, and that card carries the real destinations. Two competing exits, one of them
+// renaming itself, made leaving early and finishing look like the same action.
// ── Step 2 ────────────────────────────────────────────────────────────────────
function vvShowStep2(redirect, apiKey) {
@@ -686,7 +682,6 @@ function vvLoadChecklist() {
const el = document.getElementById('vv-checklist');
_vvLastChecklist = d;
if (!d.ok || !d.items) { el.innerHTML = 'Unable to load checklist'; return; }
- vvLabelExit();
vvRenderOnboardPanel(d);
vvRenderDone(d);
el.innerHTML = d.items.map(item => {