diff --git a/application/src/components/profile/UserProfileDetails.tsx b/application/src/components/profile/UserProfileDetails.tsx index de90535..be9465d 100644 --- a/application/src/components/profile/UserProfileDetails.tsx +++ b/application/src/components/profile/UserProfileDetails.tsx @@ -23,6 +23,9 @@ export function UserProfileDetails({ user }: UserProfileDetailsProps) { return user.username[0].toUpperCase(); }; + // Determine if the user is active based on the status field + const isActive = user.status === "Active"; + return (