diff options
| author | MohamedBassem <me@mbassem.com> | 2024-03-27 17:19:19 +0000 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-03-27 17:19:36 +0000 |
| commit | e8628b586181ea99980b0beafd9976cabfdd077e (patch) | |
| tree | f06985061592e00f5899edb5491dbcc64c754fb4 /packages/trpc | |
| parent | 9986746aa890f2490ff18fd4fc79be4de0e4dbe2 (diff) | |
| download | karakeep-e8628b586181ea99980b0beafd9976cabfdd077e.tar.zst | |
fix: Drop the 2k char limit on notes. Fixes #25
Diffstat (limited to 'packages/trpc')
| -rw-r--r-- | packages/trpc/types/bookmarks.ts | 2 |
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>; |
