diff options
| author | Ahmad Mujahid <55625580+AhmadMuj@users.noreply.github.com> | 2024-06-22 16:49:44 +0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-22 13:49:44 +0100 |
| commit | 671fc329609ff8895dc37615c21fee2a4d090306 (patch) | |
| tree | b927d390d52af0e074b561e64f7cfa1405ee2c9a /packages | |
| parent | 23faf46bdd3526b000fae6aa32ca399748e53897 (diff) | |
| download | karakeep-671fc329609ff8895dc37615c21fee2a4d090306.tar.zst | |
fix: Remove the bookmark update text limit (#244)
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/trpc/routers/bookmarks.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/trpc/routers/bookmarks.ts b/packages/trpc/routers/bookmarks.ts index 15a8c7c0..57463177 100644 --- a/packages/trpc/routers/bookmarks.ts +++ b/packages/trpc/routers/bookmarks.ts @@ -334,7 +334,7 @@ export const bookmarksAppRouter = router({ .input( z.object({ bookmarkId: z.string(), - text: z.string().max(2000), + text: z.string(), }), ) .use(ensureBookmarkOwnership) |
