Merge pull request 'fix: remove license plate fallback from VIN field (#39)' (#40) from issue-39-fix-vin-field-fallback into main
All checks were successful
Deploy to Staging / Build Images (push) Successful in 25s
Deploy to Staging / Deploy to Staging (push) Successful in 37s
Deploy to Staging / Verify Staging (push) Successful in 6s
Deploy to Staging / Notify Staging Ready (push) Successful in 6s
Deploy to Staging / Notify Staging Failure (push) Has been skipped

Reviewed-on: #40
This commit was merged in pull request #40.
This commit is contained in:
2026-01-16 02:35:03 +00:00

View File

@@ -387,8 +387,7 @@ export const VehicleDetailPage: React.FC = () => {
<form className="space-y-4">
<DetailField
label="VIN Number"
value={vehicle.vin || vehicle.licensePlate}
isRequired
value={vehicle.vin}
/>
{/* Vehicle Specification Section */}