From ed6a5e49084423aeda4f6fc4a802c8350fcd86da Mon Sep 17 00:00:00 2001 From: Sam Becker Date: Sun, 15 Feb 2026 23:25:21 -0600 Subject: [PATCH] Stop displaying storage error on photo create --- src/photo/form/PhotoForm.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/photo/form/PhotoForm.tsx b/src/photo/form/PhotoForm.tsx index 147fadca..082505fe 100644 --- a/src/photo/form/PhotoForm.tsx +++ b/src/photo/form/PhotoForm.tsx @@ -291,7 +291,7 @@ export default function PhotoForm({ const footerForField = (key: keyof PhotoFormData) => { switch (key) { case 'url': - return photoStorageUrls.length === 0 + return type === 'edit' && photoStorageUrls.length === 0 ? No storage found for photo