diff --git a/client/src/pages/vehicles.tsx b/client/src/pages/vehicles.tsx index baa6071..26dc322 100644 --- a/client/src/pages/vehicles.tsx +++ b/client/src/pages/vehicles.tsx @@ -109,6 +109,7 @@ export default function Vehicles() { brand: "", model: "", vehicleType: "car", + location: "roccapiemonte", year: undefined, assignedGuardId: null, status: "available", @@ -213,6 +214,7 @@ export default function Vehicles() { brand: vehicle.brand, model: vehicle.model, vehicleType: vehicle.vehicleType, + location: vehicle.location, year: vehicle.year ?? undefined, assignedGuardId: vehicle.assignedGuardId, status: vehicle.status, @@ -370,7 +372,7 @@ export default function Vehicles() {