Skip to content

Commit

Permalink
feat(webapp): add correct tx variable (#374)
Browse files Browse the repository at this point in the history
  • Loading branch information
leisterfrancisco committed Jan 26, 2022
1 parent e75424f commit 6e87d0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webapp/src/routes/Admin/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -528,11 +528,11 @@ const Admin = () => {
type: 'success',
content: (
<a
href={`${mainConfig.blockExplorer}/transaction/${data.transactionId}`}
href={`${mainConfig.blockExplorer}/transaction/${data.payload.tx}`}
target="_blank"
rel="noreferrer"
>
{`${t('success')} ${getLastCharacters(data.transactionId)}`}
{`${t('success')} ${getLastCharacters(data.payload.tx)}`}
</a>
)
})
Expand Down

0 comments on commit 6e87d0b

Please sign in to comment.