import { useAuth } from '~/lib/hooks/useAuth'; export function UserProfile({ className }: { className?: string }) { const { isAuthenticated, userInfo, isLoading } = useAuth(); if (!isAuthenticated) { return
{userInfo.email}