fix: Remove unused variables in VIN decode handler (refs #9)
All checks were successful
Deploy to Staging / Build Images (pull_request) Successful in 2m38s
Deploy to Staging / Deploy to Staging (pull_request) Successful in 38s
Deploy to Staging / Verify Staging (pull_request) Successful in 7s
Deploy to Staging / Notify Staging Ready (pull_request) Successful in 6s
Deploy to Staging / Notify Staging Failure (pull_request) Has been skipped
All checks were successful
Deploy to Staging / Build Images (pull_request) Successful in 2m38s
Deploy to Staging / Deploy to Staging (pull_request) Successful in 38s
Deploy to Staging / Verify Staging (pull_request) Successful in 7s
Deploy to Staging / Notify Staging Ready (pull_request) Successful in 6s
Deploy to Staging / Notify Staging Failure (pull_request) Has been skipped
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -453,8 +453,6 @@ export const VehicleForm: React.FC<VehicleFormProps> = ({
|
||||
const makeValue = !watchedMake && decoded.make.value ? decoded.make.value : watchedMake;
|
||||
const modelValue = !watchedModel && decoded.model.value ? decoded.model.value : watchedModel;
|
||||
const trimValue = !watchedTrim && decoded.trimLevel.value ? decoded.trimLevel.value : watchedTrim;
|
||||
const engineValue = !watchedEngine && decoded.engine.value ? decoded.engine.value : watchedEngine;
|
||||
const transmissionValue = !watchedTransmission && decoded.transmission.value ? decoded.transmission.value : watchedTransmission;
|
||||
|
||||
// FIRST: Load all dropdown options hierarchically (like edit mode initialization)
|
||||
// Options must exist BEFORE setting form values for selects to display correctly
|
||||
|
||||
Reference in New Issue
Block a user