Update libs/orders/src/lib/order-hooks/use-order-validation.tsx

Co-authored-by: candida-d <62548908+candida-d@users.noreply.github.com>
This commit is contained in:
m.ray 2022-07-15 04:33:42 +01:00 committed by GitHub
parent cfe7cd740f
commit c5db25e273
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -186,7 +186,7 @@ export const useOrderValidation = ({
if (fieldErrors?.price?.type === 'required') {
return {
isDisabled: true,
message: t('A price needs to be provided'),
message: t('You need to provide a price'),
};
}