chore: wiki list tab sizing

This commit is contained in:
2024-04-10 15:35:51 +02:00
parent 6cfc535dec
commit 7e67e34526
3 changed files with 6 additions and 6 deletions
-2
View File
@@ -56,8 +56,6 @@ export function locoDataList(vehiclesData: IVehiclesData | undefined) {
export function carDataList(vehiclesData: IVehiclesData | undefined) {
if (!vehiclesData) return [];
console.log(vehiclesData);
return vehiclesData.vehicleList.reduce<ICarWagon[]>((acc, vehicleInfoArray) => {
// check if data array has 4 elements (wagons only)
if (vehicleInfoArray.length != 4) return acc;