Skip to content

Commit 1e02ed0

Browse files
committed
fix(signing-progress): remove legacy files.length envelope detection
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
1 parent 3f445f0 commit 1e02ed0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/validation/SigningProgress.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ function buildProgressFromValidation(doc: ValidationDocument | null | undefined)
270270
if (!doc) {
271271
return null
272272
}
273-
if (doc.nodeType === 'envelope' || (Array.isArray(doc.files) && doc.files.length > 0)) {
273+
if (doc.nodeType === 'envelope') {
274274
const files = (doc.files ?? [])
275275
.filter((file): file is typeof file & { id: number; name: string; status: number } => {
276276
return typeof file.id === 'number'

0 commit comments

Comments
 (0)