Skip to content

Commit b0d95c4

Browse files
committed
Fix TypeScript error: Remove default value from contextOverflowContingency.enabled
1 parent a909b27 commit b0d95c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/types/src/mode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export type GroupEntry = z.infer<typeof groupEntrySchema>
4343
*/
4444

4545
export const contextOverflowContingencySchema = z.object({
46-
enabled: z.boolean().default(false),
46+
enabled: z.boolean(),
4747
message: z.string().optional(),
4848
toolSpecific: z.record(z.string(), z.string()).optional(), // tool name -> custom message
4949
})

0 commit comments

Comments
 (0)