diff --git a/src/components/AgregarEquipo.tsx b/src/components/AgregarEquipo.tsx index a6ca8f7..7f1f527 100644 --- a/src/components/AgregarEquipo.tsx +++ b/src/components/AgregarEquipo.tsx @@ -454,7 +454,9 @@ export default function Page() { type="text" placeholder="Ingresa modelo" value={formData.modelo} - onChange={(e) => handleInputChange("modelo", e.target.value)} + onChange={(e) => + handleInputChange("modelo", e.target.value.toUpperCase()) + } />