Skip to content

Commit

Permalink
chore: add arbitrum rinkeby to farming feature toggle
Browse files Browse the repository at this point in the history
  • Loading branch information
Federico Luzzi committed Jun 30, 2021
1 parent 894bcce commit 7290a01
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/hooks/useLiquidityMiningFeatureFlag.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,10 @@ import { useActiveWeb3React } from '.'

export function useLiquidityMiningFeatureFlag(): boolean {
const { chainId } = useActiveWeb3React()
return chainId === ChainId.RINKEBY || chainId === ChainId.XDAI || chainId === ChainId.MAINNET
return (
chainId === ChainId.RINKEBY ||
chainId === ChainId.XDAI ||
chainId === ChainId.MAINNET ||
chainId === ChainId.ARBITRUM_RINKEBY
)
}

0 comments on commit 7290a01

Please sign in to comment.