chore: hide bot accounts from the collabortors list (#4482)

This commit is contained in:
Aaryan Khandelwal 2024-05-16 23:59:28 +05:30 committed by GitHub
parent 0c04c3dc14
commit f547692fe6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -26,7 +26,7 @@ const CollaboratorListItem: React.FC<CollaboratorListItemProps> = observer((prop
const userDetails = getUserDetails(userId);
const isCurrentUser = userId === currentUser?.id;
if (!userDetails) return null;
if (!userDetails || userDetails.is_bot) return null;
return (
<Link href={`/${workspaceSlug}/profile/${userId}`} className="group text-center">