Skip to content

Commit

Permalink
Temporary fix for vehicle types
Browse files Browse the repository at this point in the history
  • Loading branch information
ruchernchong committed Dec 14, 2024
1 parent 00abfe1 commit 1147210
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/(default)/cars/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,9 @@ const CarsPage = async (props: { searchParams: SearchParams }) => {
Object.assign(car, { fuel_type: "Hybrid" });
}

Object.assign(car, {
vehicle_type: VEHICLE_TYPE_MAP[vehicle_type] ?? vehicle_type,
});
// Object.assign(car, {
// vehicle_type: VEHICLE_TYPE_MAP[vehicle_type] ?? vehicle_type,
// });

return car;
});
Expand Down

0 comments on commit 1147210

Please sign in to comment.