Skip to content

Commit

Permalink
Merge pull request #177 from celo-org/pahor/explorer_fix
Browse files Browse the repository at this point in the history
Dango explorer link fix
  • Loading branch information
pahor167 committed Jul 7, 2024
2 parents 36464ac + 75c00e3 commit 6f0ccb4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion apps/web/components/faucet-status.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,11 @@ const TxMessage = ({
className={inter.className}
target="_blank"
rel="noreferrer"
href={`https://explorer.celo.org/${network}/tx/${txHash}`}
href={
network === 'dango'
? `https://celo-dango.blockscout.com/tx/${txHash}`
: `https://explorer.celo.org/${network}/tx/${txHash}`
}
>
View on Celo Explorer
</a>
Expand Down

0 comments on commit 6f0ccb4

Please sign in to comment.