| 16 | import { Avatar, AvatarFallback, AvatarImage } from "./ui/avatar"; |
| 17 | |
| 18 | interface UserInfo { |
| 19 | id: string; |
| 20 | name: string; |
| 21 | image?: string | null | undefined; |
| 22 | email: string; |
| 23 | emailVerified: boolean; |
| 24 | createdAt: Date; |
| 25 | updatedAt: Date; |
| 26 | } |
| 27 | |
| 28 | export default function UserProfile({ mini }: { mini?: boolean }) { |
| 29 | const [userInfo, setUserInfo] = useState<UserInfo | null>(null); |
nothing calls this directly
no outgoing calls
no test coverage detected