+ {/* Item Details */}
+
{fields.map((field) => {
const fieldValue = (item as never)[field.key];
const displayValue = fieldValue === 0 || fieldValue == null ? 'N/A' : fieldValue;
@@ -76,17 +78,26 @@ export function ReviewItem({
})}
- {/* Description Section */}
- {isMapfix && item.Description && (
-
-
- Description
-
-
- {item.Description}
-
-
- )}
-