Skip to content

Commit

Permalink
fix: invalid schema
Browse files Browse the repository at this point in the history
  • Loading branch information
Majorfi committed Oct 5, 2023
1 parent 93d1a7a commit 24e4d48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/common/schemas/yDaemonVaultsSchemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ export const yDaemonVaultSchema = z.object({
}),
retired: z.boolean().default(false).catch(false),
depositLimit: z.string(),
strategies: z.array(yDaemonVaultStrategySchema),
strategies: z.array(yDaemonVaultStrategySchema).nullable().default([]),
migration: z.object({
available: z.boolean(),
address: addressSchema,
Expand Down

0 comments on commit 24e4d48

Please sign in to comment.