+
+ {row.categoryLabel}
+ {shouldShowCategoryCode(row.categoryLabel, row.categoryCode) && (
+
+ {row.categoryCode}
+
+ )}
+ |
+
+ {typeof row.seatCosts.standard === 'number'
+ ? displayUnitPrice({
+ cents: row.seatCosts.standard,
+ minDigits: 2,
+ maxDigits: 10,
+ })
+ : '—'}
+ |
+
+ {typeof row.seatCosts.prepaid === 'number'
+ ? displayUnitPrice({
+ cents: row.seatCosts.prepaid,
+ minDigits: 2,
+ maxDigits: 10,
+ })
+ : '—'}
+ |
+
+ {typeof row.seatCosts.ondemand === 'number'
+ ? displayUnitPrice({
+ cents: row.seatCosts.ondemand,
+ minDigits: 2,
+ maxDigits: 10,
+ })
+ : '—'}
+ |
+
+ ))}
+