From 28a14292f49f56c3742fd61cd5ac546911fb5e81 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Thu, 10 Apr 2025 08:06:05 -0500 Subject: [PATCH] update max upload to 20mb --- web/src/components/input/ImageEntry.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/input/ImageEntry.tsx b/web/src/components/input/ImageEntry.tsx index 1e64840be1..29a388f7c6 100644 --- a/web/src/components/input/ImageEntry.tsx +++ b/web/src/components/input/ImageEntry.tsx @@ -25,7 +25,7 @@ type ImageEntryProps = { export default function ImageEntry({ onSave, children, - maxSize = 10 * 1024 * 1024, // 10MB default + maxSize = 20 * 1024 * 1024, // 20MB default accept = { "image/*": [".jpeg", ".jpg", ".png", ".gif", ".webp"] }, }: ImageEntryProps) { const { t } = useTranslation(["views/faceLibrary"]);