You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/OpenSign/src/pages/PdfRequestFiles.js
+17-7Lines changed: 17 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -593,15 +593,21 @@ function PdfRequestFiles() {
593
593
setSignedSigners([]);
594
594
setUnSignedSigners([]);
595
595
getDocumentDetails();
596
+
constindex=pdfDetails?.[0].Signers.findIndex(
597
+
(x)=>x.Email===jsonSender.email
598
+
);
599
+
constnewIndex=index+1;
600
+
constuser=pdfDetails?.[0].Signers[newIndex];
601
+
if(user){
602
+
setIsCompleted({
603
+
isModal: true,
604
+
message:
605
+
"You have successfully signed the document. You can download or print a copy of the partially signed document. A copy of the digitally signed document will be sent to the owner over email once it is signed by all signers."
0 commit comments