Open loayawad opened 8 months ago
I get this error when I copy/paste a component. I tried to include it with different field types, but doesn't work, am I doing something wrong?
The code
name: "values", type: "array", title: "Values", of: [ { type: "object", title: "Section", fields: [ defineField(copyPaste), { name: "title", type: "string", title: "Title", validation: (Rule) => Rule.required(), }, { name: "paragraphs", type: "array", title: "Paragraphs", of: [ { type: "string", }, ], validation: (Rule) => Rule.required() .min(1) .error("At least one paragraph is required."), }, ], }, ],
I get this error when I copy/paste a component. I tried to include it with different field types, but doesn't work, am I doing something wrong?
The code