Skip to content

Commit

Permalink
explorer fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pahor167 committed Jul 7, 2024
1 parent 36464ac commit c3ef591
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/web/components/faucet-status.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { FC, useCallback, useEffect, useState } from 'react'
import { inter } from 'components/request-form'
import { FC, useCallback, useEffect, useState } from 'react'
import styles from 'styles/Form.module.css'
import { Network, RequestRecord, RequestStatus } from 'types'
import { subscribeRequest } from 'utils/firebase-client'
Expand Down Expand Up @@ -95,7 +95,7 @@ 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 c3ef591

Please sign in to comment.