feat: update tail_number to string

This commit is contained in:
2026-01-07 18:16:59 +03:00
parent a3d574a79c
commit 25155a66bc
4 changed files with 10 additions and 10 deletions

View File

@@ -115,7 +115,7 @@ export const VehicleEditPage = observer(() => {
onChange={(e) =>
setEditVehicleData({
...editVehicleData,
tail_number: Number(e.target.value),
tail_number: e.target.value,
})
}
/>