diff options
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/trpc/routers/lists.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/trpc/routers/lists.ts b/packages/trpc/routers/lists.ts index d4b56ecf..a69d1f24 100644 --- a/packages/trpc/routers/lists.ts +++ b/packages/trpc/routers/lists.ts @@ -15,7 +15,7 @@ const zNewBookmarkListSchema = z.object({ name: z .string() .min(1, "List name can't be empty") - .max(20, "List name is at most 20 chars"), + .max(40, "List name is at most 40 chars"), icon: z.string(), parentId: z.string().nullish(), }); |
