From a9d1e3ecf846ad96d550a4b7763eeb0b13b1e4b0 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sat, 18 Oct 2025 05:34:13 +0000 Subject: [PATCH] Clear onboarding key on sign-out clearClientAuthState cgen-01658dd866ba459b8f116d96d61467c5 --- client/contexts/AuthContext.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/client/contexts/AuthContext.tsx b/client/contexts/AuthContext.tsx index df5da1ea..6cd3de67 100644 --- a/client/contexts/AuthContext.tsx +++ b/client/contexts/AuthContext.tsx @@ -649,6 +649,7 @@ export const AuthProvider: React.FC<{ children: React.ReactNode }> = ({ if (typeof window !== "undefined") { try { window.localStorage.removeItem("onboarding_complete"); + window.localStorage.removeItem("aethex_onboarding_progress_v1"); const shouldRemove = (key: string) => key.startsWith("sb-") || key.includes("supabase") ||