aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--packages/trpc/routers/lists.ts2
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(),
});