diff --git a/src/gui/src/UI/Dashboard/TabTeams.js b/src/gui/src/UI/Dashboard/TabTeams.js index 42f3db4a3..b1a701f19 100644 --- a/src/gui/src/UI/Dashboard/TabTeams.js +++ b/src/gui/src/UI/Dashboard/TabTeams.js @@ -177,7 +177,9 @@ const renderMemberView = () => { const renderPlan = () => teamPlanHtml({ plan: state.plan, - seats: state.members.filter(m => m.org_owned).length, + // The same count the accounts table shows: suspended seats are excluded, + // because they stop costing a per-account charge. + seats: membersBillingSummary(annotateMembers(state.members, state.audit)).billed, canBuy: window.team_billing_ui === true, });