fix:(cadastro-fot) Forma no do foto em caixa alta
This commit is contained in:
parent
9c6ee3afdb
commit
29662a1081
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue