Skip to content

Commit

Permalink
Updated org plans component to not call for tax info on self hosted i…
Browse files Browse the repository at this point in the history
…nstances (#12888)
  • Loading branch information
cturnbull-bitwarden authored Jan 15, 2025
1 parent e79dab8 commit 1721552
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ export class OrganizationPlansComponent implements OnInit, OnDestroy {
this.billing = await this.organizationApiService.getBilling(this.organizationId);
this.sub = await this.organizationApiService.getSubscription(this.organizationId);
this.taxInformation = await this.organizationApiService.getTaxInfo(this.organizationId);
} else {
} else if (!this.selfHosted) {
this.taxInformation = await this.apiService.getTaxInfo();
}

Expand Down

0 comments on commit 1721552

Please sign in to comment.