diff --git a/src/components/PricingView.tsx b/src/components/PricingView.tsx
index a909fed..e9447a1 100644
--- a/src/components/PricingView.tsx
+++ b/src/components/PricingView.tsx
@@ -1057,6 +1057,10 @@ export function PricingView({ data, headers, onSaveRow, onCaptureState, onEdit,
);
})}
+
+ Issues
+ |
+
handleSort(COLUMNS.VALIDATED_CHECK)}>
Check
{ e.stopPropagation(); handleResizeStart(e, 'check', columnWidths.check); }} />
@@ -1240,6 +1244,21 @@ export function PricingView({ data, headers, onSaveRow, onCaptureState, onEdit,
))}
+ {/* Issues column */}
+
+ {unitErrors.length > 0 ? (
+
+ {unitErrors.map((err, i) => (
+
+ {err}
+
+ ))}
+
+ ) : (
+ —
+ )}
+ |
+
{/* Check Column (Validated + Note) */}
| |