Skip to content

Commit

Permalink
Billing address fixed (#1604)
Browse files Browse the repository at this point in the history
  • Loading branch information
lkostrowski authored Oct 2, 2024
1 parent 86a4b37 commit f4250c1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/healthy-bugs-live.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"app-avatax": patch
---

Fixed broken taxes resolving for billing address
2 changes: 1 addition & 1 deletion apps/avatax/src/modules/saleor/order-confirmed/event.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,5 +120,5 @@ export class SaleorOrderConfirmedEvent {

getOrderShippingAddress = () => this.rawPayload.order.shippingAddress;

getOrderBillingAddress = () => this.rawPayload.order.shippingAddress;
getOrderBillingAddress = () => this.rawPayload.order.billingAddress;
}

0 comments on commit f4250c1

Please sign in to comment.