Skip to content

Commit

Permalink
Bump Aesthetics
Browse files Browse the repository at this point in the history
  • Loading branch information
lucemans committed Mar 29, 2024
1 parent 4b6041f commit 29b6e9c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions web/src/txHistory/TransactionEntry.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,15 @@ export const TransactionEntry: FC<{ tx: AllMultiReturnTypes }> = ({ tx }) => {
{tx.args[0].map((name, _index) => (
<li>
<a
href={'https://ens.app/' + name}
href={
'https://ens.app/' +
name +
'.eth'
}
className="link"
target="_blank"
>
{name}
{name}.eth
</a>
</li>
))}
Expand Down

0 comments on commit 29b6e9c

Please sign in to comment.