Skip to content

Commit 831a480

Browse files
committed
fix schema not updating
1 parent bd4af69 commit 831a480

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/SchemaForm.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
export let components: Record<string, new (...args: any[]) => any> = {};
3535
export let componentContext: Record<string, unknown> = {};
3636
37-
$: resolvedSchema = resolveRefs(schema, schema)
37+
$: resolvedSchema = resolveRefs(schema, schema) as any
3838
const dispatch = createEventDispatcher();
3939
4040
let validationErrors = {} as ValidationErrors;

0 commit comments

Comments
 (0)