commit dd7e23b20694e1402a55f6b1489059a0ebabf36d
parent 60ce250c8530710e0fa10fdf79ff4089878c0c99
Author: Sebastian <sebasjm@gmail.com>
Date: Wed, 16 Apr 2025 07:17:34 -0300
feedback from vlada
Diffstat:
2 files changed, 6 insertions(+), 10 deletions(-)
diff --git a/packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx b/packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx
@@ -230,15 +230,11 @@ export function ProductForm({ onSubscribe, initial, alreadyExist }: Props) {
alreadyExist={alreadyExist}
tooltip={i18n.str`Inventory for products with finite supply (for internal use only).`}
/>
- {preference.developerMode ? (
- <InputTaxes<Entity>
- name="taxes"
- label={i18n.str`Taxes`}
- tooltip={i18n.str`Taxes included in the product price, exposed to customers.`}
- />
- ) : (
- <Fragment />
- )}
+ <InputTaxes<Entity>
+ name="taxes"
+ label={i18n.str`Taxes`}
+ tooltip={i18n.str`Taxes included in the product price, exposed to customers.`}
+ />
<InputArray
name="categories_map"
label={i18n.str`Categories`}
diff --git a/packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx b/packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx
@@ -526,7 +526,7 @@ export function CreatePage({
/>
<InputGroup
name="shipping.delivery_location"
- label={i18n.str`Location`}
+ label={i18n.str`Delivery location`}
tooltip={i18n.str`Address where the products will be delivered`}
>
<InputLocation name="shipping.delivery_location" />