Skip to content

Commit

Permalink
Merge pull request #824 from OpenSignLabs/raktima-opensignlabs-patch-9
Browse files Browse the repository at this point in the history
fix: a mismatch permits a signer placeholder to sign any placeholder not allocated to that signer issue in the quick send flow.
  • Loading branch information
prafull-opensignlabs authored Jun 10, 2024
2 parents 5518d69 + 69140d2 commit e073e83
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apps/OpenSign/src/pages/PdfRequestFiles.js
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,9 @@ function PdfRequestFiles() {
currUserId
);
}
setSignerObjectId(currUserId);
if (currUserId) {
setSignerObjectId(currUserId);
}
if (documentData[0].SignedUrl) {
setPdfUrl(documentData[0].SignedUrl);
} else {
Expand Down

0 comments on commit e073e83

Please sign in to comment.