Warning: Failed prop type: Invalid prop `required` of type `array` supplied to `ForwardRef(FormControl)`, expected `boolean`.
neuralsea-lab opened this issue · 1 comments
neuralsea-lab commented
Received warning above for required: [], field in schema below. Setting required: true does not work - it is definitely an array that is expected.
For schema:
const schema: JSONSchemaType<Kloud8Data> = {
title: 'Kloud8 Request',
type: 'object',
properties: {
useCaseDescription: { type: 'string', uniforms: { component: LongTextField } },
resourceQuotas: {
type: 'object',
properties: {
minMemory: { type: 'number', minimum: 128, uniforms: { component: MemoryQuotaField } },
minCpu: { type: 'number', minimum: 100, uniforms: { component: CPUQuotaField } },
maxMemory: { type: 'number', maximum: 256, uniforms: { component: MemoryQuotaField } },
maxCpu: { type: 'number', maximum: 200, uniforms: { component: CPUQuotaField } },
},
required: [],
},
}
}
radekmie commented
Hi @neuralsea-lab. If it's just a warning, it shouldn't cause any issues. Please share what theme (and version) are you using.