File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -254,7 +254,7 @@ function normalizeValidationDocument(data: unknown): ValidationFileRecord | null
254254 ? ' envelope'
255255 : data .nodeType === ' file'
256256 ? ' file'
257- : null
257+ : null
258258
259259 if (! uuid || ! name || nodeId === null || status === null || nodeType === null ) {
260260 return null
@@ -328,8 +328,7 @@ const signRequestUuidForProgress = computed(() => {
328328
329329const isAfterSigned = computed (() => history .state ?.isAfterSigned ?? shouldFireAsyncConfetti .value ?? false )
330330
331- const isEnvelope = computed (() => document .value ?.nodeType === ' envelope'
332- || (Array .isArray (document .value ?.files ) && document .value .files .length > 0 ))
331+ const isEnvelope = computed (() => document .value ?.nodeType === ' envelope' )
333332
334333const validationComponent = computed (() => (isEnvelope .value ? EnvelopeValidation : FileValidation ))
335334const validationDocument = computed (() => document .value )
You can’t perform that action at this time.
0 commit comments