Legacy unified authentication context combining state and actions. Preserved for backward compatibility but not recommended for new code. Use AuthStateContext and AuthActionsContext for better performance and separation of concerns.

Use AuthStateContext and AuthActionsContext instead.

export const AuthContext = createContext<AuthContextType | undefined>(
undefined,
);