Skip to content

Commit 863b7de

Browse files
drew-harrisskeptrunedev
authored andcommitted
feat: add usage
1 parent 3f2494d commit 863b7de

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

frontends/dashboard/src/pages/orgs/OrgBillingPage.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { OrganizationAndSubAndPlan } from "shared/types";
44
import { PlansTable } from "../../components/PlansTable";
55
import { createToast } from "../../components/ShowToasts";
66
import { InvoicesTable } from "../../components/InvoicesTable";
7+
import { OrganizationUsageOverview } from "../../components/OrganizationUsageOverview";
78

89
export 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
};

0 commit comments

Comments
 (0)