aboutsummaryrefslogtreecommitdiffstats
path: root/packages/trpc
diff options
context:
space:
mode:
Diffstat (limited to 'packages/trpc')
-rw-r--r--packages/trpc/types/bookmarks.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/trpc/types/bookmarks.ts b/packages/trpc/types/bookmarks.ts
index 477adbc8..3360a792 100644
--- a/packages/trpc/types/bookmarks.ts
+++ b/packages/trpc/types/bookmarks.ts
@@ -15,7 +15,7 @@ export type ZBookmarkedLink = z.infer<typeof zBookmarkedLinkSchema>;
export const zBookmarkedTextSchema = z.object({
type: z.literal("text"),
- text: z.string().max(2000),
+ text: z.string(),
});
export type ZBookmarkedText = z.infer<typeof zBookmarkedTextSchema>;