diff --git a/centrifuge-app/src/pages/Loan/index.tsx b/centrifuge-app/src/pages/Loan/index.tsx index 83b095692..b8f0dc427 100644 --- a/centrifuge-app/src/pages/Loan/index.tsx +++ b/centrifuge-app/src/pages/Loan/index.tsx @@ -285,7 +285,7 @@ function Loan() { poolType={poolMetadata?.pool?.asset.class} decimals={pool.currency.decimals} pricing={loan.pricing as PricingInfo} - maturityDate={new Date(loan.pricing.maturityDate)} + maturityDate={loan.pricing.maturityDate ? new Date(loan.pricing.maturityDate) : undefined} originationDate={originationDate ? new Date(originationDate) : undefined} />