We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d332dfd commit 5e05340Copy full SHA for 5e05340
1 file changed
frontend/src/core/components/onboarding/orchestrator/onboardingStorage.ts
@@ -20,15 +20,6 @@ export function markOnboardingCompleted(): void {
20
}
21
22
23
-export function markOnboardingIncomplete(): void {
24
- if (typeof window === 'undefined') return;
25
- try {
26
- localStorage.setItem(ONBOARDING_COMPLETED_KEY, 'false');
27
- } catch (error) {
28
- console.error('[onboardingStorage] Error marking onboarding as incomplete:', error);
29
- }
30
-}
31
-
32
export function resetOnboardingProgress(): void {
33
if (typeof window === 'undefined') return;
34
try {
0 commit comments