import * as yup from 'yup';
export const setCartSchema = yup.object({
projects: yup.array().of(
yup.object({
projectId: yup.string().required('Project ID is required'),
quantity: yup.number().required('Quantity is required').min(1, 'Quantity must be greater or equal 1'),
})
).min(1, 'At least one project is required').required('Projects are required'),
}).strict(true);