Skip to content

Commit

Permalink
Merge branch 'hot-fixes/disable-farm-tvl' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
schystz committed Apr 19, 2022
2 parents 24a0cf5 + 0492e1d commit 5e4ae12
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Farm/FarmSummary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ const FarmSummary = ({ poolsInfo, tokenPrice }: FarmSummaryProps) => {
const { t } = useTranslation()

return (
<div className="w-full flex flex-col md:flex-row space-y-2 md:space-y-0 md:space-x-2 pb-2">
<StakeCard title={t('totalPoolValue')} value="5000.03" />
<div className="w-full flex flex-col md:flex-row space-y-2 md:space-y-0 md:space-x-2 pb-2 justify-end">
{/* <StakeCard title={t('totalPoolValue')} value="5000.03" /> */}
<StakeCard title={t('poolSummaryHaloEarned')} value={summary.haloEarned} />
<StakeCard title={t('poolSummaryStaked')} value={summary.stakedValue} />
<StakeCard title={t('poolSummaryStakeable')} value={summary.stakeableValue} />
Expand Down
2 changes: 2 additions & 0 deletions src/constants/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,8 @@ export const NETWORK_PARAMS: {
*/
}

// Adding this comment so we can tag a new commit hash
// v2.1.6 - remove cap on bridge (updated on .env)
const isBridgeCapped = process.env.REACT_APP_IS_BRIDGE_CAPPED || 'true'

export const NETWORK_SUPPORTED_FEATURES: {
Expand Down

0 comments on commit 5e4ae12

Please sign in to comment.