diff --git a/src/components/ProductDescriptions.tsx b/src/components/ProductDescriptions.tsx
index a6d47c8..7593951 100644
--- a/src/components/ProductDescriptions.tsx
+++ b/src/components/ProductDescriptions.tsx
@@ -196,7 +196,7 @@ export function ProductDescriptions({ data, headers, asinColumnIndex, onEdit, ro
};
const Badge = ({ content, row }: { content: any, row: ExcelRow }) => {
- if (content) return ✓;
+ if (content !== undefined && content !== null && content !== '') return ✓;
// EOL Exception: OOC and stock <= 0
const classification = String(row[COLUMNS.CLASSIFICATION] || '').toUpperCase().trim();