fix: remove default from schema

This commit is contained in:
Marc-Roig 2023-05-12 16:25:15 +02:00
parent dbdc13245b
commit 3b523f1e01
No known key found for this signature in database
GPG Key ID: FB4E2C43A0BEE249

View File

@ -23,7 +23,6 @@ const validateUpdateStageOnEntity = yup
const validateWorkflowCreateSchema = yup.object().shape({
name: yup.string().max(255).required(),
default: yup.boolean().default(false),
stages: yup.array().of(stageObject),
});