diff --git a/apps/edr-freight-api/src/modules/bookings/booking-freight.util.ts b/apps/edr-freight-api/src/modules/bookings/booking-freight.util.ts index cf4561c7b..e3e97f301 100644 --- a/apps/edr-freight-api/src/modules/bookings/booking-freight.util.ts +++ b/apps/edr-freight-api/src/modules/bookings/booking-freight.util.ts @@ -10,6 +10,7 @@ export function assertFreightShape(input: BookingFreightShapeInput): void { `freightType is required and must be one of: ${FREIGHT_TYPES.join(', ')}`, ); } + // const containers = input.containers ?? []; const hasContainers = containers.length > 0;