+ {progress.steps.map((step, index) => {
+ const status = stepStatuses[index];
+ const typeLabel =
+ step.type === 'trigger'
+ ? stepTypeLabel({ type: 'trigger', index: 0 })
+ : stepTypeLabel({
+ type: 'action',
+ index: actionIndices[index],
+ });
+ const pieceName = normalizePieceName(step.piece);
+
+ return (
+
+ {index > 0 && }
+
+
+
+ {typeLabel}
+
+
+ {(status === 'configuring' ||
+ status === 'validating') && (
+
+ )}
+ {statusLabel(status)}
+
+
+
+
+
+ );
+ })}
+