Skip to content

Commit 536a546

Browse files
authored
fix(containerPredicate): Remove maximum limit (#10959)
fix: remove maximum limit
1 parent d53b203 commit 536a546

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/builders/src/components/v2/Assertions.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,7 @@ export const containerPredicate = z.object({
7171
textDisplayPredicate,
7272
]),
7373
)
74-
.min(1)
75-
.max(10),
74+
.min(1),
7675
spoiler: z.boolean().optional(),
7776
accent_color: z.number().int().min(0).max(0xffffff).nullish(),
7877
});

0 commit comments

Comments
 (0)