Skip to content

Commit 52f37b0

Browse files
fix: resolve issue to allow edits options on completed documents in the SignYourself flow
1 parent 19d3465 commit 52f37b0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

apps/OpenSign/src/components/pdf/RenderPdf.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,8 @@ function RenderPdf({
554554
</React.Fragment>
555555
);
556556
})
557-
: xyPostion?.map((data, ind) => {
557+
: !pdfDetails?.[0]?.IsCompleted &&
558+
xyPostion?.map((data, ind) => {
558559
// signyourself flow
559560
return (
560561
<React.Fragment key={ind}>

0 commit comments

Comments
 (0)