Skip to content

Commit

Permalink
chore(backend): format
Browse files Browse the repository at this point in the history
  • Loading branch information
BlairCurrey committed Jun 29, 2023
1 parent a8ee875 commit 13d93fe
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ export default function Transactions() {
<tr key={trx.id}>
<td>{trx.createdAt}</td>
<td>{trx.type}</td>
<td><code>{JSON.stringify(trx.metadata)}</code></td>
<td>
<code>{JSON.stringify(trx.metadata)}</code>
</td>
<td>
{(Number(trx.amountValue) / 100).toFixed(trx.assetScale)}{' '}
{trx.assetCode}
Expand Down

0 comments on commit 13d93fe

Please sign in to comment.