diff --git a/src/components/PricingView.tsx b/src/components/PricingView.tsx index e9447a1..76378be 100644 --- a/src/components/PricingView.tsx +++ b/src/components/PricingView.tsx @@ -1244,19 +1244,18 @@ export function PricingView({ data, headers, onSaveRow, onCaptureState, onEdit, ))} - {/* Issues column */} + {/* Issues column (weight only) */} - {unitErrors.length > 0 ? ( -
- {unitErrors.map((err, i) => ( - - {err} - - ))} -
- ) : ( - - )} + {(() => { + const weightError = unitErrors.find(e => e.startsWith('NW')); + return weightError ? ( + + {weightError} + + ) : ( + + ); + })()} {/* Check Column (Validated + Note) */}