Skip to content

Commit

Permalink
fix: quoteDraft submit address
Browse files Browse the repository at this point in the history
  • Loading branch information
kris-liu-smile committed Jul 11, 2023
1 parent 599c765 commit 368ef0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/storefront/src/pages/quote/QuoteDraft.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ function QuoteDraft({ setOpenPage }: QuoteDraftProps) {
const {
shippingAddress: editShippingAddress,
billingAddress: editBillingAddress,
} = getAddress()
} = billingRef?.current ? getAddress() : info

const shippingAddress = editShippingAddress
? perfectAddress(editShippingAddress)
Expand Down

0 comments on commit 368ef0a

Please sign in to comment.