Skip to content

Commit

Permalink
fix(SelectMenu): set placeholder max to 150
Browse files Browse the repository at this point in the history
  • Loading branch information
almeidx committed Feb 23, 2022
1 parent 8203c5d commit 3d2fae2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/builders/src/components/Assertions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const buttonLabelValidator = z.string().nonempty().max(80);

export const buttonStyleValidator = z.number().int().min(ButtonStyle.Primary).max(ButtonStyle.Link);

export const placeholderValidator = z.string().max(100);
export const placeholderValidator = z.string().max(150);
export const minMaxValidator = z.number().int().min(0).max(25);

export const optionsValidator = z.object({}).array().nonempty();
Expand Down

0 comments on commit 3d2fae2

Please sign in to comment.