diff --git a/libs/orders/src/lib/order-hooks/use-order-validation.spec.tsx b/libs/orders/src/lib/order-hooks/use-order-validation.spec.tsx
index 89eadf9b3..332449d25 100644
--- a/libs/orders/src/lib/order-hooks/use-order-validation.spec.tsx
+++ b/libs/orders/src/lib/order-hooks/use-order-validation.spec.tsx
@@ -78,7 +78,7 @@ const ERROR = {
FIELD_SIZE_MIN: `The amount cannot be lower than "${defaultOrder.step}"`,
FIELD_PRICE_REQ: 'You need to provide a price',
FIELD_PRICE_MIN: 'The price cannot be negative',
- FIELD_PRICE_STEP_NULL: 'No fractional amounts are allowed for this order',
+ FIELD_PRICE_STEP_NULL: 'Order sizes must be whole numbers for this market',
FIELD_PRICE_STEP_DECIMAL: `The amount field accepts up to ${market.positionDecimalPlaces} decimal places`,
};
diff --git a/libs/orders/src/lib/order-hooks/use-order-validation.tsx b/libs/orders/src/lib/order-hooks/use-order-validation.tsx
index 865fff957..7d87e522a 100644
--- a/libs/orders/src/lib/order-hooks/use-order-validation.tsx
+++ b/libs/orders/src/lib/order-hooks/use-order-validation.tsx
@@ -204,7 +204,7 @@ export const useOrderValidation = ({
if (market.positionDecimalPlaces === 0) {
return {
isDisabled: true,
- message: t('No fractional amounts are allowed for this order'),
+ message: t('Order sizes must be whole numbers for this market'),
};
}
return {
diff --git a/libs/ui-toolkit/src/components/input-error/input-error.tsx b/libs/ui-toolkit/src/components/input-error/input-error.tsx
index 36cc93cb8..f0bad2b57 100644
--- a/libs/ui-toolkit/src/components/input-error/input-error.tsx
+++ b/libs/ui-toolkit/src/components/input-error/input-error.tsx
@@ -43,7 +43,7 @@ export const InputError = ({
{...props}
role="alert"
>
-
+
{children}
);