From fd85d504e80e1bff537a961a16b4275bd5c7d369 Mon Sep 17 00:00:00 2001 From: Sam Becker Date: Fri, 29 Dec 2023 13:00:25 -0500 Subject: [PATCH] Disable auto-capitalization on photo form fields --- src/components/FieldSetWithStatus.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/FieldSetWithStatus.tsx b/src/components/FieldSetWithStatus.tsx index 3bf31245..38fea9f4 100644 --- a/src/components/FieldSetWithStatus.tsx +++ b/src/components/FieldSetWithStatus.tsx @@ -92,6 +92,7 @@ export default function FieldSetWithStatus({ autoComplete="off" readOnly={readOnly || pending} className={cc(type === 'text' && 'w-full')} + autoCapitalize="off" />} );