Skip to content

Commit

Permalink
remove hardcode value
Browse files Browse the repository at this point in the history
  • Loading branch information
andriibiloussigma committed Nov 28, 2024
1 parent e4e376e commit 7afd919
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/pages/agreementDetails/agreementCard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const AgreementCard: React.FC<AgreementCardProps> = ({ agreement }) => {
const renewalNoticePeriod = agreement?.provisions?.execution_date ?? "-";
const renewalNoticeDate = agreement?.provisions?.execution_date ?? '-';
const renewalTerm = agreement?.provisions?.execution_date ?? "1 year";
const renewalOwner = "Andy Automator";
const renewalOwner = agreement?.parties?.[0]?.name_in_agreement ?? '-';
const additionalInfo =
"After the user completes signing the envelope in the embedded signing session, the envelope is redirected to the second signer based on the conditions described in Step 2.";

Expand Down

0 comments on commit 7afd919

Please sign in to comment.