fix:(cadastro-fot) Forma no do foto em caixa alta

This commit is contained in:
NANDO9322 2026-02-09 01:07:16 -03:00
parent 9c6ee3afdb
commit 29662a1081

View file

@ -75,7 +75,7 @@ export const FotForm: React.FC<FotFormProps> = ({ onCancel, onSubmit, token, exi
}, []);
// Validate FOT uniqueness
const handleFotChange = (e: React.ChangeEvent<HTMLInputElement>) => {
const val = e.target.value;
const val = e.target.value.toUpperCase();
setFormData({ ...formData, fot: val });
if (!initialData && val) {