Fix Korean text in banner drag-and-drop section

- Translate car name to English using translateCarName
- Remove Korean year suffix (년)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
AutonetSellCar Deploy
2025-12-31 16:57:38 +09:00
parent d902f920b3
commit 9265a823dc

View File

@@ -1336,9 +1336,9 @@ export default function CarsAdminPage() {
)} )}
</div> </div>
<div className="flex-1 min-w-0"> <div className="flex-1 min-w-0">
<div className="font-medium text-gray-800 truncate">{car.car_name}</div> <div className="font-medium text-gray-800 truncate">{translateCarName(car.car_name || '', 'en')}</div>
<div className="text-xs text-gray-500"> <div className="text-xs text-gray-500">
{car.year} | {car.mileage?.toLocaleString()}km {car.year} | {car.mileage?.toLocaleString()}km
</div> </div>
</div> </div>
<button <button