diff --git a/backend/src/ee/services/license/license-dal.ts b/backend/src/ee/services/license/license-dal.ts index 891d60922..a2bd7ec51 100644 --- a/backend/src/ee/services/license/license-dal.ts +++ b/backend/src/ee/services/license/license-dal.ts @@ -44,7 +44,7 @@ export const licenseDALFactory = (db: TDbClient) => { // count org identities const identityDoc = await (tx || db.replicaNode())(TableName.Membership) - .where({ status: OrgMembershipStatus.Accepted, scope: AccessScope.Organization }) + .where({ scope: AccessScope.Organization }) .whereNotNull(`${TableName.Membership}.actorIdentityId`) .where((bd) => { if (orgId) {