(rows: QueuedAttachment[])
| 118 | } |
| 119 | |
| 120 | export function selectIsUploading(rows: QueuedAttachment[]): boolean { |
| 121 | return rows.some(r => r.status === 'uploading'); |
| 122 | } |
| 123 | |
| 124 | export function selectHasFailed(rows: QueuedAttachment[]): boolean { |
| 125 | return rows.some(r => r.status === 'failed'); |
no outgoing calls
no test coverage detected