diff --git a/src/utils/lazySchema.ts b/src/utils/lazySchema.ts index 459f24b..c767a38 100644 --- a/src/utils/lazySchema.ts +++ b/src/utils/lazySchema.ts @@ -6,3 +6,4 @@ export function lazySchema(factory: () => T): () => T { let cached: T | undefined return () => (cached ??= factory()) } +