hey-pharmacist-ecommerce 1.1.24 → 1.1.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/screens/CheckoutScreen.tsx +1 -1
package/dist/index.mjs
CHANGED
|
@@ -10355,7 +10355,7 @@ function CheckoutScreen() {
|
|
|
10355
10355
|
} catch (e) {
|
|
10356
10356
|
setShippingRates([]);
|
|
10357
10357
|
setSelectedShippingRateId(null);
|
|
10358
|
-
setShippingRatesError(e?.message || "Failed to fetch shipping rates");
|
|
10358
|
+
setShippingRatesError(e?.response?.data?.message || "Failed to fetch shipping rates");
|
|
10359
10359
|
} finally {
|
|
10360
10360
|
setShippingRatesLoading(false);
|
|
10361
10361
|
}
|