diff --git a/pages/multi/[address]/transaction/[transactionID].tsx b/pages/multi/[address]/transaction/[transactionID].tsx index 664d069..3c944ed 100644 --- a/pages/multi/[address]/transaction/[transactionID].tsx +++ b/pages/multi/[address]/transaction/[transactionID].tsx @@ -75,7 +75,7 @@ const TransactionPage = ({ const [accountOnChain, setAccountOnChain] = useState(null); const [pubkey, setPubkey] = useState(); const [accountError, setAccountError] = useState(null); - const txInfo: DbTransaction = (transactionJSON && JSON.parse(transactionJSON)) || null; + const txInfo: DbTransaction = transactionJSON ? JSON.parse(transactionJSON) : null; const router = useRouter(); const addSignature = (signature: DbSignature) => {