ordering-ui-react-native 0.23.10 → 0.23.11
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
|
@@ -985,7 +985,7 @@ export const OrderDetailsUI = (props: OrderDetailsParams) => {
|
|
|
985
985
|
{typeof order?.summary?.delivery_price === 'number' && !isPickup && (
|
|
986
986
|
<Table>
|
|
987
987
|
<OText size={12} lineHeight={18} weight={'400'} color={theme.colors.textNormal}>{t('DELIVERY_FEE', 'Delivery Fee')}</OText>
|
|
988
|
-
<OText size={12} lineHeight={18} weight={'400'} color={theme.colors.textNormal}>{parsePrice(order?.summary?.delivery_price
|
|
988
|
+
<OText size={12} lineHeight={18} weight={'400'} color={theme.colors.textNormal}>{parsePrice(order?.summary?.delivery_price + getIncludedTaxes(true))}</OText>
|
|
989
989
|
</Table>
|
|
990
990
|
)}
|
|
991
991
|
{
|