Skip to content

Commit cb10d54

Browse files
web3dev1337claude
andcommitted
fix: skip onboarding boot screen when already completed
The dependency-onboarding-booting CSS class (which hides all page content) was applied unconditionally on Windows hosts before any async check. Now it reads the completion flag from localStorage first and skips the boot overlay if onboarding was already completed. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 294956a commit cb10d54

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

client/app.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9355,12 +9355,14 @@ class ClaudeOrchestrator {
93559355
}
93569356
body?.classList?.remove?.('dependency-onboarding-booting');
93579357
};
9358-
setBootstrapPending(true);
93599358
if (!isWindowsHost) {
93609359
setBootstrapPending(false);
93619360
return;
93629361
}
93639362

9363+
const completedEarly = (() => { try { return localStorage.getItem(completedKey) === 'true'; } catch { return false; } })();
9364+
setBootstrapPending(!completedEarly);
9365+
93649366
const dismissKey = 'orchestrator-dependency-setup-dismissed-v3';
93659367
const completedKey = 'orchestrator-dependency-onboarding-completed-v2';
93669368
const progressKey = 'orchestrator-dependency-onboarding-progress-v2';

0 commit comments

Comments
 (0)