diff options
| -rw-r--r-- | packages/opencode/src/config/config.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/opencode/src/config/config.ts b/packages/opencode/src/config/config.ts index b4f4ace67..4af079127 100644 --- a/packages/opencode/src/config/config.ts +++ b/packages/opencode/src/config/config.ts @@ -247,9 +247,9 @@ export const Info = Schema.Struct({ .annotate({ identifier: "Config" }) .pipe( withStatics((s) => ({ - zod: (zod(s) as unknown as z.ZodObject<any>) - .strict() - .meta({ ref: "Config" }) as unknown as z.ZodType<DeepMutable<Schema.Schema.Type<typeof s>>>, + zod: (zod(s) as unknown as z.ZodObject<any>).strict().meta({ ref: "Config" }) as unknown as z.ZodType< + DeepMutable<Schema.Schema.Type<typeof s>> + >, })), ) |
