Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
imhson committed Feb 6, 2024
1 parent fdcfc40 commit 216ba07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/my-inventory/txs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default function Txs() {
target='_blank'
href={`${getConfig().AURASCAN_ENDPOINT}/transaction/${row?.tx_info?.tx_hash}`}
className='text-[#B93139] flex-1 pr-4'>
{shortHash(row?.tx_info?.tx_hash)}
{row?.tx_info?.tx_hash ? shortHash(row?.tx_info?.tx_hash) : 'Error Tx Hash'}
</Link>
<div className='text-[#292929] text-end'>{moment(row.updated_at).format('DD/MM/yyyy HH:mm')}</div>
</div>
Expand Down

0 comments on commit 216ba07

Please sign in to comment.