mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-01 08:34:53 +02:00
Fix default
This commit is contained in:
parent
2992de5139
commit
e557bda48e
1 changed files with 4 additions and 1 deletions
|
@ -176,7 +176,10 @@ export const configSchema = z
|
|||
orgs: z.object({
|
||||
block_size: z.number().positive().gt(0).optional().default(24),
|
||||
subnet_group: z.string().optional().default("100.90.128.0/24")
|
||||
}).optional(),
|
||||
}).optional().default({
|
||||
block_size: 24,
|
||||
subnet_group: "100.90.128.0/24"
|
||||
}),
|
||||
rate_limits: z
|
||||
.object({
|
||||
global: z
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue