From 92a296693cc3bbc3d425973ab12ac3d998840b97 Mon Sep 17 00:00:00 2001 From: Matthew Petrie Date: Fri, 15 Dec 2023 14:58:11 +0000 Subject: [PATCH] Correct default cart tax currency --- lib/shopify/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/shopify/index.ts b/lib/shopify/index.ts index e8b6637c8..1c2a59844 100644 --- a/lib/shopify/index.ts +++ b/lib/shopify/index.ts @@ -122,7 +122,7 @@ const reshapeCart = (cart: ShopifyCart): Cart => { if (!cart.cost?.totalTaxAmount) { cart.cost.totalTaxAmount = { amount: '0.0', - currencyCode: 'USD' + currencyCode: cart.cost.totalAmount.currencyCode }; }