File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
frontends/dashboard/src/pages/orgs Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import { OrganizationAndSubAndPlan } from "shared/types";
44import { PlansTable } from "../../components/PlansTable" ;
55import { createToast } from "../../components/ShowToasts" ;
66import { InvoicesTable } from "../../components/InvoicesTable" ;
7+ import { OrganizationUsageOverview } from "../../components/OrganizationUsageOverview" ;
78
89export const OrgBillingPage = ( ) => {
910 const api_host = import . meta. env . VITE_API_HOST as unknown as string ;
@@ -45,9 +46,10 @@ export const OrgBillingPage = () => {
4546 } ) ;
4647
4748 return (
48- < div class = "flex w-full flex-col gap-y-12 " >
49- < PlansTable currentOrgSubPlan = { orgSubPlan ( ) } />
49+ < div class = "" >
50+ < OrganizationUsageOverview />
5051 < InvoicesTable />
52+ < PlansTable currentOrgSubPlan = { orgSubPlan ( ) } />
5153 </ div >
5254 ) ;
5355} ;
You can’t perform that action at this time.
0 commit comments