1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 22:33:35 +00:00

Updated certain billing callsites to get billing history instead (#9443)

This commit is contained in:
Conner Turnbull
2024-06-12 07:52:59 -04:00
committed by GitHub
parent 99dc88688a
commit f85c4877e2
4 changed files with 17 additions and 15 deletions

View File

@@ -44,7 +44,7 @@ export class OrgBillingHistoryViewComponent implements OnInit, OnDestroy {
return;
}
this.loading = true;
this.billing = await this.organizationApiService.getBilling(this.organizationId);
this.billing = await this.organizationApiService.getBillingHistory(this.organizationId);
this.loading = false;
}
}