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)

(cherry picked from commit 1721552)
  • Loading branch information
cturnbull-bitwarden committed Jan 15, 2025
1 parent 43b9eeb commit 3f990eb
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 3f990eb

Please sign in to comment.