diff --git a/valhalla/jawn/src/controllers/private/organizationController.ts b/valhalla/jawn/src/controllers/private/organizationController.ts index 7eeb93395d..fc8500ce08 100644 --- a/valhalla/jawn/src/controllers/private/organizationController.ts +++ b/valhalla/jawn/src/controllers/private/organizationController.ts @@ -93,7 +93,7 @@ export class OrganizationController extends Controller { @Request() request: JawnAuthenticatedRequest ): Promise> { const organizationManager = new OrganizationManager(request.authParams); - const memberCount = await organizationManager.getMemberCount(); + const memberCount = await organizationManager.getMemberCount(true); if (memberCount.error || !memberCount.data) { return err(memberCount.error ?? "Error getting member count"); } @@ -281,7 +281,7 @@ export class OrganizationController extends Controller { const stripeManager = new StripeManager(request.authParams); const organizationManager = new OrganizationManager(request.authParams); - const memberCount = await organizationManager.getMemberCount(); + const memberCount = await organizationManager.getMemberCount(true); if (memberCount.error || !memberCount.data) { return err(memberCount.error ?? "Error getting member count"); }