mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
fix(containerPredicate): Remove maximum limit (#10959)
fix: remove maximum limit
This commit is contained in:
@@ -71,8 +71,7 @@ export const containerPredicate = z.object({
|
|||||||
textDisplayPredicate,
|
textDisplayPredicate,
|
||||||
]),
|
]),
|
||||||
)
|
)
|
||||||
.min(1)
|
.min(1),
|
||||||
.max(10),
|
|
||||||
spoiler: z.boolean().optional(),
|
spoiler: z.boolean().optional(),
|
||||||
accent_color: z.number().int().min(0).max(0xffffff).nullish(),
|
accent_color: z.number().int().min(0).max(0xffffff).nullish(),
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user