From 48ac5582fce4d956faab3beed6ebb53df5b14eaa Mon Sep 17 00:00:00 2001 From: Michael Schwobe Date: Tue, 19 Dec 2023 11:08:07 -0600 Subject: [PATCH] Updated allowed import file size --- app/utils/bookmark-validation.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/utils/bookmark-validation.ts b/app/utils/bookmark-validation.ts index aeeb5f3..49c030f 100644 --- a/app/utils/bookmark-validation.ts +++ b/app/utils/bookmark-validation.ts @@ -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({