+ {completedRecipients.length > 0 && (
+
+
Completed
+ {completedRecipients.map((recipient: Recipient) => (
+
+ {renderAvatar(recipient)}
+
+ {recipient.email}
+
+
+ ))}
+
+ )}
+
+ {waitingRecipients.length > 0 && (
+
+
Waiting
+ {waitingRecipients.map((recipient: Recipient) => (
+
+ {renderAvatar(recipient)}
+
+ {recipient.email}
+
+
+ ))}
+
+ )}
+
+ {uncompletedRecipients.length > 0 && (
+
+
Uncompleted
+ {uncompletedRecipients.map((recipient: Recipient) => (
+
+ {renderAvatar(recipient)}
+
+ {recipient.email}
+
+
+ ))}
+
+ )}
+
+