diff --git a/apps/console/src/components/table/PeopleCell.tsx b/apps/console/src/components/table/PeopleCell.tsx index f4e08c5a6..6e8f15611 100644 --- a/apps/console/src/components/table/PeopleCell.tsx +++ b/apps/console/src/components/table/PeopleCell.tsx @@ -37,7 +37,7 @@ export function PeopleCell(props: Props) { query={peopleQuery} variables={{ organizationId: props.organizationId, - filter: { contractEnded: false }, + filter: { contractEnded: false, states: ["ACTIVE", "PENDING"] }, }} items={data => data.organization?.profiles?.edges.map(edge => edge.node) ?? []}