Skip to content

Commit

Permalink
Updated allowed import file size
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelschwobe committed Dec 19, 2023
1 parent 1e78473 commit 48ac558
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/utils/bookmark-validation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ const BookmarkFilesSchema = z
"File must be of type text/html",
)
.refine(
(files) => files.every((file) => file.size < 400_000),
"File size must be less than 400kB",
(files) => files.every((file) => file.size < 500_000),
"File size must be less than 500kB",
);

export const UploadBookmarkFilesSchema = z.object({
Expand Down

0 comments on commit 48ac558

Please sign in to comment.