ordering-ui-react-native 0.23.47 → 0.23.48
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/package.json
CHANGED
|
@@ -568,6 +568,14 @@ const CartUI = (props: any) => {
|
|
|
568
568
|
/>
|
|
569
569
|
</View>
|
|
570
570
|
)}
|
|
571
|
+
{!cart?.valid_address && cart?.status !== 2 && (
|
|
572
|
+
<OText
|
|
573
|
+
color={theme.colors.error}
|
|
574
|
+
size={12}
|
|
575
|
+
>
|
|
576
|
+
{t('INVALID_CART_ADDRESS', 'Selected address is invalid, please select a closer address.')}
|
|
577
|
+
</OText>
|
|
578
|
+
)}
|
|
571
579
|
{(!isMultiCheckout || !cart?.business_id) && (
|
|
572
580
|
<>
|
|
573
581
|
{cart?.valid_products ? (
|