fix schema updates with falsy values

This commit is contained in:
dswbx
2025-07-09 08:48:05 +02:00
parent 682ecc6dac
commit 0a49061549
5 changed files with 16 additions and 7 deletions
+1 -1
View File
@@ -76,7 +76,7 @@ function AuthStrategiesListInternal() {
return (
<Form
schema={schema.toJSON()}
schema={schema as any}
initialValues={config}
onSubmit={handleSubmit}
options={formOptions}