Skip to content

Commit

Permalink
chore: revert patch of IS_MAINTAINING
Browse files Browse the repository at this point in the history
  • Loading branch information
Keith-CY committed Aug 18, 2023
1 parent 748fef1 commit 05730b6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/Alert/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import { ComponentActions } from '../../contexts/actions'
import { AppCachedKeys } from '../../constants/cache'
import { IS_MAINTAINING } from '../../constants/common'
import styles from './styles.module.scss'
import { isMainnet } from '../../utils/chain'

const FIFTEEN_MINUTES = 15 * 60 * 1000

Expand Down Expand Up @@ -53,7 +52,7 @@ const Alert = () => {
)
}

if (IS_MAINTAINING || !isMainnet()) {
if (IS_MAINTAINING) {
return <div className={styles.container}>{i18n.t('error.maintain')}</div>
}

Expand Down

0 comments on commit 05730b6

Please sign in to comment.