Files
reflector/www/app/lib/useAuthReady.ts
2025-09-02 14:00:13 -04:00

14 lines
248 B
TypeScript

"use client";
import { useAuth } from "./AuthProvider";
// TODO
export default function useAuthReady() {
const auth = useAuth();
return {
isAuthenticated: auth.status === "authenticated",
isLoading: auth.status === "loading",
};
}