We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7920ae commit 52454d5Copy full SHA for 52454d5
src/lib/SchemaForm.svelte
@@ -34,8 +34,7 @@
34
export let components: Record<string, new (...args: any[]) => any> = {};
35
export let componentContext: Record<string, unknown> = {};
36
37
- let resolvedSchema: any = resolveRefs(schema, schema)
38
-
+ $: resolvedSchema = resolveRefs(schema, schema) as any
39
const dispatch = createEventDispatcher();
40
41
let validationErrors = {} as ValidationErrors;
0 commit comments