diff --git a/src/components/Dnd/Cards/CreateCardForm/CreateCardForm.tsx b/src/components/Dnd/Cards/CreateCardForm/CreateCardForm.tsx index f9b9970..82743ae 100644 --- a/src/components/Dnd/Cards/CreateCardForm/CreateCardForm.tsx +++ b/src/components/Dnd/Cards/CreateCardForm/CreateCardForm.tsx @@ -36,10 +36,6 @@ const CreateCardForm: FC = ({ onSubmit, onCancel }) => { baseMarketplace: null, }, validate: { - baseMarketplace: baseMarketplace => - isServicesAndProductsIncluded && !baseMarketplace && "МП не выбран", - shippingWarehouse: shippingWarehouse => - isServicesAndProductsIncluded && !shippingWarehouse && "Склад отгрузки не выбран", clientName: clientName => isClientsIncluded && !clientName && "Клиент не выбран", },