fix link to etherscan in notification
This commit is contained in:
parent
9762c401fe
commit
fdc0663041
|
@ -29,7 +29,11 @@ export function NotificationItem({ publicKey, text, transaction }: NotificationI
|
||||||
<NotificationText>
|
<NotificationText>
|
||||||
<span>{communityDetails.name}</span> {text}
|
<span>{communityDetails.name}</span> {text}
|
||||||
</NotificationText>
|
</NotificationText>
|
||||||
<NotificationLink href={getExplorerTransactionLink(transaction.hash, transaction.chainId)}>
|
<NotificationLink
|
||||||
|
href={getExplorerTransactionLink(transaction.hash, transaction.chainId)}
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
>
|
||||||
View on Etherscan
|
View on Etherscan
|
||||||
</NotificationLink>
|
</NotificationLink>
|
||||||
</NotificationContent>
|
</NotificationContent>
|
||||||
|
|
Loading…
Reference in New Issue