Skip to content

Commit 07f02ed

Browse files
pschutz93nebrius
andauthored
Make explicitly optional
Co-authored-by: Bryan Hughes <[email protected]>
1 parent 48fdd4a commit 07f02ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/compiler/src/settings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ export const settingsSchema = z.strictObject({
382382
* When enabled, properties will still be sorted alphabetically but required
383383
* properties will be shown first.
384384
*/
385-
sortRequiredProperties: z.boolean().default(true),
385+
sortRequiredProperties: z.boolean().optional().default(true),
386386
})
387387
.default({
388388
visibleResponses: "explicit",

0 commit comments

Comments
 (0)