Skip to content

Commit 5e05340

Browse files
committed
Remove markOnboardingIncomplete function
Deleted the unused markOnboardingIncomplete function from onboardingStorage.ts to clean up the codebase.
1 parent d332dfd commit 5e05340

1 file changed

Lines changed: 0 additions & 9 deletions

File tree

frontend/src/core/components/onboarding/orchestrator/onboardingStorage.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,6 @@ export function markOnboardingCompleted(): void {
2020
}
2121
}
2222

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-
3223
export function resetOnboardingProgress(): void {
3324
if (typeof window === 'undefined') return;
3425
try {

0 commit comments

Comments
 (0)