From c65b0a92e9b5d5728c582fad945babeac4df76bd Mon Sep 17 00:00:00 2001 From: sairaj mote Date: Sun, 16 Apr 2023 18:49:05 +0530 Subject: [PATCH] Bug fix --- index.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index 4030e82..7d49fd0 100644 --- a/index.html +++ b/index.html @@ -1230,10 +1230,11 @@
contract type

${replaceDash(contractType)}

-
-
expiration
-

${getFormattedTime(new Date(expiration).getTime())}

-
+ ${expiration ? html` +
+
expiration
+

${getFormattedTime(new Date(expiration).getTime())}

+
`: ''}
participation amount

${participationFees} ${token}

@@ -1271,7 +1272,6 @@ async function renderTransactions(container, transactions = []) { let txFrag = parseTransactions(transactions); - console.log(txFrag) const renderedTransactions = txFrag.map(tx => { switch (tx.type) { case 'tokentransfer':