Skip to content

Commit

Permalink
Merge branch 'main' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
RAMTO committed Jan 3, 2024
2 parents ce095b0 + c440542 commit e83c74a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/FarmRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const FarmRow = ({ farmData, index, handleRowClick, showUserStaked = true }: IFa
</>
) : null}

{boostedPools.includes(farmData.poolData.pairAddress) ? (
{boostedPools.length > 0 && boostedPools.includes(farmData.poolData.pairAddress) ? (
<>
<span className="text-micro text-uppercase badge bg-success ms-3">Super Farm</span>
<Tippy content="This Yield Farm has increased HBAR Rewards (almost 50% of USD Reward Value are HBAR)">
Expand Down
2 changes: 1 addition & 1 deletion src/components/PoolInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ const PoolInfo = ({
</>
) : null}

{boostedPools.includes(poolData.pairAddress) ? (
{boostedPools.length > 0 && boostedPools.includes(poolData.pairAddress) ? (
<>
<span className="text-micro text-uppercase badge bg-success ms-3">Super Farm</span>
<Tippy content="This Pool’s Yield Farm has increased HBAR Rewards (almost 50% of USD Reward Value are HBAR)">
Expand Down
5 changes: 1 addition & 4 deletions src/constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,10 +170,7 @@ export const restrictedFarms = [

export const bladeClaimdropAddress = '0x00000000000000000000000000000000002fe4bd';

export const boostedPools = [
'0x5718F1127E025C6745835faCF551283481630423',
'0xEc9396Fd1019a6644534Ce7905183F495bC86baf',
];
export const boostedPools: string[] = [];

export const notVerifiedTokens = [
'0x00000000000000000000000000000000002A30A8',
Expand Down

0 comments on commit e83c74a

Please sign in to comment.