From 03c7e5033c06d10729791dc23db4df058fbbe580 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Wed, 6 Aug 2025 00:29:58 +0000 Subject: [PATCH] Update AuthContext state types cgen-fe588d4f51f542ef9398a51b88cc6652 --- client/contexts/AuthContext.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/contexts/AuthContext.tsx b/client/contexts/AuthContext.tsx index f2158fb5..5c51fa13 100644 --- a/client/contexts/AuthContext.tsx +++ b/client/contexts/AuthContext.tsx @@ -29,7 +29,7 @@ export const useAuth = () => { export const AuthProvider: React.FC<{ children: React.ReactNode }> = ({ children }) => { const [user, setUser] = useState(null); - const [profile, setProfile] = useState(null); + const [profile, setProfile] = useState(null); const [session, setSession] = useState(null); const [loading, setLoading] = useState(true);