From f541c58fa7b3ac3880240923adc41569773468c6 Mon Sep 17 00:00:00 2001 From: Eric Gullickson <16152721+ericgullickson@users.noreply.github.com> Date: Sun, 11 Jan 2026 16:17:50 -0600 Subject: [PATCH] fix: Remove unused variables in VIN decode handler (refs #9) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- frontend/src/features/vehicles/components/VehicleForm.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/frontend/src/features/vehicles/components/VehicleForm.tsx b/frontend/src/features/vehicles/components/VehicleForm.tsx index 5732e6c..559d351 100644 --- a/frontend/src/features/vehicles/components/VehicleForm.tsx +++ b/frontend/src/features/vehicles/components/VehicleForm.tsx @@ -453,8 +453,6 @@ export const VehicleForm: React.FC = ({ 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