Skip to content

Commit

Permalink
checking balance fails. seems to time out. for now we will just skip …
Browse files Browse the repository at this point in the history
…this check.
  • Loading branch information
aaronmgdr committed Sep 26, 2024
1 parent 67889d0 commit bc85260
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions apps/web/pages/[chain].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import { RequestForm } from 'components/request-form'
import { SetupButton } from 'components/setup-button'
import styles from 'styles/Home.module.css'
import { Network, networks } from 'types'
import { isBalanceBelowPar } from 'utils/balance'
import { inter } from 'utils/inter'

interface Props {
Expand Down Expand Up @@ -128,8 +127,8 @@ export const getServerSideProps: GetServerSideProps<Props> = async (
}
}

const isOutOfCELO = await isBalanceBelowPar(network as Network)
// const isOutOfCELO = await isBalanceBelowPar(network as Network)
return {
props: { isOutOfCELO, network: network as Network },
props: { isOutOfCELO: false, network: network as Network },
}
}

0 comments on commit bc85260

Please sign in to comment.