diff --git a/client/contexts/AuthContext.tsx b/client/contexts/AuthContext.tsx index 9e6d55f2..f2158fb5 100644 --- a/client/contexts/AuthContext.tsx +++ b/client/contexts/AuthContext.tsx @@ -8,13 +8,13 @@ import { aethexUserService, type AethexUserProfile } from '@/lib/aethex-database interface AuthContextType { user: User | null; - profile: UserProfile | null; + profile: AethexUserProfile | null; session: Session | null; loading: boolean; signIn: (email: string, password: string) => Promise; - signUp: (email: string, password: string, userData?: Partial) => Promise; + signUp: (email: string, password: string, userData?: Partial) => Promise; signOut: () => Promise; - updateProfile: (updates: Partial) => Promise; + updateProfile: (updates: Partial) => Promise; } const AuthContext = createContext(undefined);