We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42b1bea commit eed3a8fCopy full SHA for eed3a8f
1 file changed
src/services/SigningRequirementValidator.ts
@@ -35,7 +35,6 @@ interface ValidatorConfig {
35
errors?: Array<{ code?: number; [key: string]: unknown }>
36
hasSignatures?: boolean
37
canCreateSignature?: boolean
38
- signerHasSignRequest?: boolean
39
[key: string]: unknown
40
}
41
@@ -122,11 +121,7 @@ export class SigningRequirementValidator {
122
121
return false
123
124
125
- if (config.signerHasSignRequest) {
126
- return true
127
- }
128
-
129
const visibleElements = this.signStore.document?.visibleElements || []
130
- return visibleElements.some(row => row.signRequestId === signRequestId)
+ return visibleElements.some(row => String(row.signRequestId) === String(signRequestId))
131
132
0 commit comments