fix no data found on signers login page

This commit is contained in:
RaktimaNXG
2023-11-21 13:36:42 +05:30
parent f712532793
commit 2a55c03788
3 changed files with 7 additions and 4 deletions
@@ -1033,7 +1033,7 @@ function PdfRequestFiles() {
<Modal.Body>
<p className="pTagBody">
This document has been signed by all Sigers.
This document has been signed by all Signers.
</p>
</Modal.Body>
@@ -231,7 +231,7 @@ function PlaceHolderSign() {
setHandleError("Error: Something went wrong!");
setIsLoading(loadObj);
} else if (res.length === 0) {
const res = await contactBook(jsonSender.objectId);
const res = await contactBook(jsonSender.objectId, true);
if (res[0] && res.length) {
setSignerUserId(res[0].objectId);
const tourstatus = res[0].TourStatus && res[0].TourStatus;